Advertisement
NovaViper

Update Attempt

Jul 16th, 2017
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <#PSScriptInfo
  2.  
  3. .VERSION 1.6.0
  4.  
  5. .GUID 5ad85ec5-fbf7-445f-a095-9a5d593edc8a
  6.  
  7. .AUTHOR NovaViper
  8.  
  9. .COMPANYNAME
  10.  
  11. .COPYRIGHT
  12.  
  13. .TAGS java minecraft bukkit server manager
  14.  
  15. .LICENSEURI https://raw.githubusercontent.com/NovaViper/Console-Master/master/LICENSE
  16.  
  17. .PROJECTURI https://github.com/NovaViper/Console-Master/tree/master
  18.  
  19. .ICONURI
  20.  
  21. .EXTERNALMODULEDEPENDENCIES
  22.  
  23. .REQUIREDSCRIPTS
  24.  
  25. .EXTERNALSCRIPTDEPENDENCIES
  26.  
  27. .RELEASENOTES
  28. https://raw.githubusercontent.com/NovaViper/Console-Master/master/changelog.txt
  29.  
  30. .PRIVATEDATA
  31. .DESCRIPTION Powershell Script for Managing Java Servers (i.e. Minecraft, Bukkit)
  32. #>
  33.  
  34. Param()
  35.  
  36.  
  37. $Info = @{
  38.     Path = "C:\Users\novag\Documents\MEGA\ProgrammingThings\Powershell\ConsoleMaster\ConsoleMaster.ps1"
  39.     Version = '1.6.0' # http://semver.org ;)
  40.     GUID  = '5ad85ec5-fbf7-445f-a095-9a5d593edc8a'
  41.     # GUID will randomly auto-generate for new scripts
  42.     # Only specify GUID if you're going to overwrite existing properties on an updated script version
  43.     Author = 'NovaViper'
  44.     Description = 'Powershell Script for Managing Java Servers (i.e. Minecraft, Bukkit)'
  45.     # CompanyName
  46.     # Copyright
  47.     Tags = @('java','minecraft','bukkit', 'server', 'manager')
  48.     # RequiredModules = 'Pester','AzureRM'  # or any module name published on the PS Gallery
  49.     # ExternalModuleDependencies = 'qwerty' # any module name not published on the PS Gallery
  50.     # RequiredScripts = 'asdf'              # any script published on the PS Gallery
  51.     # ExternalScriptDependencies = 'jkl'    # you get the idea
  52.     ProjectURI = 'https://github.com/NovaViper/Console-Master/tree/master'
  53.     LicenseURI = 'https://raw.githubusercontent.com/NovaViper/Console-Master/master/LICENSE'
  54.     # IconURI
  55.     ReleaseNotes = 'https://raw.githubusercontent.com/NovaViper/Console-Master/master/changelog.txt'
  56.     Force = $true
  57. }
  58. Update-ScriptFileInfo @Info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement