Hi,
the situation is as follows :
several powershell scripts that I need are stored to a fileshare in a specific folder
these Powershell scripts are used on 6 different Ad servers to which this fileshare is linked.
when someone is launching the powershell script I want the script to check on the fileshare if the most recent powershell script for this specific task is used.
I’ve seen that you can use New-scriptFileInfo but then I would like to know on how to check if I use the most recent version or something like
[pre]
get-item “C:\temp\checks.ps1” |Format-List -Property version
[/pre]
output of the last is
[pre]
VersionInfo : File: C:\temp\checks.ps1
InternalName:
OriginalFilename:
FileVersion:
FileDescription:
Product:
ProductVersion:
Debug: False
Patched: False
PreRelease: False
PrivateBuild: False
SpecialBuild: False
Language:
[/pre]
where I’m wondering how do I get the fileversion filled in.
thanks for your suggestions in this matter