Advertisement
Guest User

new-GUID

a guest
Aug 23rd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function New-Guid
  2. {
  3.     [CmdletBinding(HelpURI='https://go.microsoft.com/fwlink/?LinkId=526920')]
  4.     [OutputType([System.Guid])]
  5.     Param()
  6.    
  7.     Begin
  8.     {
  9.         [Guid]::NewGuid()
  10.     }    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement