You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes the Drive Label ist not correctly translated
(New-Object -ComObject Shell.Application).NameSpace("$($drive.DriveLetter):").Self.Name = $drive.Label
Hello,
Sometimes the Drive Label ist not correctly translated
(New-Object -ComObject Shell.Application).NameSpace("$($drive.DriveLetter):").Self.Name = $drive.Label
change to
(New-Object -ComObject Shell.Application).NameSpace("$($drive.DriveLetter):").Self.Name = $ExecutionContext.InvokeCommand.ExpandString($drive.Label)
This will correct this Issue
Thank you for this very usefull generator
The text was updated successfully, but these errors were encountered: