Can anyone tell me what the recommended practice is for PowerShell Module GUID's. Initially a new Module gets labeled with a GUID. When I later come back to update/extend/change the module, I increment the ModuleVersion value, but should the GUID value also be changed?
Asked
Active
Viewed 791 times
2
-
5The [`GUID` (Globally unique identifier)](https://nl.wikipedia.org/wiki/Globally_unique_identifier) should stay the same. If you e.g. upload your script to the [PowerShell Gallery](https://www.powershellgallery.com/), it identify it as the same script/module and append the new version to the Version History. – iRon Aug 10 '18 at 11:26