Yes that tracks. It seems a genuine Windows 11 machine acts differently than an updated one.
This, by the way, is not the only thing that is different. Keeps it interesting. We will keep looking.
Search found 8174 matches
- Thu Jan 26, 2023 11:39 am
- Forum: PowerShell Studio
- Topic: PowerShell Studio not switch out on Alt-Tab
- Replies: 5
- Views: 1677
- Mon Jan 23, 2023 8:19 am
- Forum: PowerShell Studio
- Topic: Get-AzStorageBlob: "Value of '-1' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'.
- Replies: 1
- Views: 412
Re: Get-AzStorageBlob: "Value of '-1' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'.
Yes, we are aware and it has already been fixed.
- Thu Jan 19, 2023 2:59 pm
- Forum: PowerShell Studio
- Topic: Invoke-WebRequest : Value of '-1' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'.
- Replies: 2
- Views: 1099
Re: Invoke-WebRequest : Value of '-1' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'.
We have identified the issue. It will be part of an upcoming service build.
- Thu Jan 19, 2023 2:59 pm
- Forum: PowerShell Studio
- Topic: Issues with Invoke-Webrequest in Build 214 and 215
- Replies: 2
- Views: 1339
Re: Issues with Invoke-Webrequest in Build 214 and 215
We have identified the issue. It will be part of an upcoming service build.
- Thu Jan 19, 2023 1:37 am
- Forum: PowerShell GUIs
- Topic: Version in file name
- Replies: 1
- Views: 54
Re: Version in file name
Use a name of Exename.xx.xx.xx
Create a post- build script that retrieves the version number of Exename.xx.xx.xx.exe
and renames the file.
(Get-Command "Exename.xx.xx.xx.exe").FileVersionInfo.FileVersion
will retrieve the version number.
You can take it from there.
Create a post- build script that retrieves the version number of Exename.xx.xx.xx.exe
and renames the file.
(Get-Command "Exename.xx.xx.xx.exe").FileVersionInfo.FileVersion
will retrieve the version number.
You can take it from there.
- Wed Jan 18, 2023 9:28 am
- Forum: PowerShell Studio
- Topic: Powershell Studio 2023 - Packager (.exe) Build Problem
- Replies: 2
- Views: 962
Re: Powershell Studio 2023 - Packager (.exe) Build Problem
If the file disappears or is blocked from writing, it is your anti-virus scanner. It quarantines the newly created file.
Check your logs and submit a quarantined file to your anti-virus vendor.
Check your logs and submit a quarantined file to your anti-virus vendor.
- Tue Jan 17, 2023 3:56 pm
- Forum: PowerShell Studio
- Topic: PowerShell Studio not switch out on Alt-Tab
- Replies: 5
- Views: 1677
Re: PowerShell Studio not switch out on Alt-Tab
We have one Windows 11 machine that exhibits this behavior 90% of the time. Other times it works fine.
We also have tow other Windows 11 machines where this works flawlessly all the time.
So question for you, is your machine an original Windows 11 machine or was it updated from Windows 10?
We also have tow other Windows 11 machines where this works flawlessly all the time.

So question for you, is your machine an original Windows 11 machine or was it updated from Windows 10?
- Tue Jan 17, 2023 12:32 pm
- Forum: PowerShell Studio
- Topic: Upgraded to PowerShell Studio 2023 and script won't run
- Replies: 2
- Views: 985
Re: Upgraded to PowerShell Studio 2023 and script won't run
Yes, we identified the problem. An update for this will be available shortly.
- Mon Jan 16, 2023 5:45 pm
- Forum: PowerShell
- Topic: Copy-Item copying folder and files but files are locked
- Replies: 14
- Views: 677
Re: Copy-Item copying folder and files but files are locked
Oh goody a puzzle 
So what is the PowerShell version? This is all a little strange. I have never heard of files staying open once the process that opened them terminates.
Are you certain the process terminates?

So what is the PowerShell version? This is all a little strange. I have never heard of files staying open once the process that opened them terminates.
Are you certain the process terminates?
- Mon Jan 16, 2023 4:12 pm
- Forum: PowerShell
- Topic: Copy-Item copying folder and files but files are locked
- Replies: 14
- Views: 677
Re: Copy-Item copying folder and files but files are locked
.NET (which is the underlying architecture) does have a notion of secure location. But then it would not run at all. At least as far as I know. You need to find out which process has your files open, otherwise it is just guesswork. LockHunter will tell you who has the files open. Assuming your scrip...