The output is normal. The tool stops when it finds the indicated version. That was the only change in the installer that could have caused a new behavior.
Since it produced the expected output it is not the cause of this.
I am glad to hear you are all set.
Search found 7599 matches
- Wed Feb 24, 2021 7:46 pm
- Forum: PowerShell Studio
- Topic: Cannot upgrade to 5.8.186
- Replies: 9
- Views: 147
- Wed Feb 24, 2021 4:57 pm
- Forum: PowerShell Studio
- Topic: Cannot upgrade to 5.8.186
- Replies: 9
- Views: 147
Re: Cannot upgrade to 5.8.186
Please run the exe in the attached zip file from a command prompt as follows:
NeedDesktopFramework.exe 5.0.0 /DIAG
And see if that hangs. If it produces output, please send it.
NeedDesktopFramework.exe 5.0.0 /DIAG
And see if that hangs. If it produces output, please send it.
- Wed Feb 24, 2021 4:37 pm
- Forum: PowerShell Studio
- Topic: Cannot upgrade to 5.8.186
- Replies: 9
- Views: 147
Re: Cannot upgrade to 5.8.186
Please go here:
C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App
and tell us exactly what folders and files you have in that directory.
Thanks!
C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App
and tell us exactly what folders and files you have in that directory.
Thanks!
- Wed Feb 24, 2021 1:35 pm
- Forum: PowerShell Studio
- Topic: Cannot upgrade to 5.8.186
- Replies: 9
- Views: 147
Re: Cannot upgrade to 5.8.186
Its failing when preparing for the prerequisites dialog.
Can you successfully install other software in this machine?
Can you give the PrimalScript trial a try? Just to see if it is a general MSI issue or related to the specific installer.
Can you successfully install other software in this machine?
Can you give the PrimalScript trial a try? Just to see if it is a general MSI issue or related to the specific installer.
- Wed Feb 24, 2021 8:10 am
- Forum: PowerShell Studio
- Topic: Cannot upgrade to 5.8.186
- Replies: 9
- Views: 147
Re: Cannot upgrhttps://www.sapien.com/forums/download/file.php?id=5701ade to 5.8.186
Reboot your computer to get rid of any hanging MSI processes.
Start the setup from a command line prompt with these parameters:
"<PowerShellStudio Installer>.exe" /L*V "installer.log"
If it hangs again examine the logs for any clues as to where it might hang.
Start the setup from a command line prompt with these parameters:
"<PowerShellStudio Installer>.exe" /L*V "installer.log"
If it hangs again examine the logs for any clues as to where it might hang.
- Thu Feb 18, 2021 2:21 pm
- Forum: PrimalScript
- Topic: PrimalScript 7.7.147 installer does not recognize existing .NET 5 install
- Replies: 1
- Views: 117
Re: PrimalScript 7.7.147 installer does not recognize existing .NET 5 install
Yes, thank you. We are aware. Microsoft for some reason does not allow installation of a previous runtime, even though it leaves it in place if a later version is installed. It also to just fail silently and do nothing when a newer version is detected. We have devised our own check which will do its...
- Mon Feb 15, 2021 2:58 pm
- Forum: PowerShell
- Topic: Script Cannot Find Called Script
- Replies: 7
- Views: 188
Re: Script Cannot Find Called Script
It's a good practice to always check if the path is correct. if (!(Test-Path $PathToFile)) { Write-Warning "$PathToFile not found" } else { $result = & $PathToFile -Variable1 $var1 -Variable2 $var2 } If you are running a script from an admin console, elevated, some personal folders may not exist or ...
- Mon Feb 15, 2021 10:03 am
- Forum: Free Tools
- Topic: PowerRegEx Free tools download is V1.4.37 and not V1.4.38 as listed
- Replies: 2
- Views: 534
Re: PowerRegEx Free tools download is V1.4.37 and not V1.4.38 as listed
It seems to download the correct version. Maybe a fluke? Can you please try again?
- Mon Feb 15, 2021 9:52 am
- Forum: Free Tools
- Topic: PowerRegEx Free tools download is V1.4.37 and not V1.4.38 as listed
- Replies: 2
- Views: 534
Re: PowerRegEx Free tools download is V1.4.37 and not V1.4.38 as listed
[Topic moved by moderator]
- Mon Feb 15, 2021 9:50 am
- Forum: Former and Future Customers - Questions
- Topic: MSVCR110.dll is missing
- Replies: 3
- Views: 200
Re: MSVCR110.dll is missing
What's missing here is a Microsoft Visual Studio runtime. The installer does usually install that if it is missing, but sometimes when items are removed from a machine, it may not have been done correctly. Since you did not mention if that is a new install or a previously working installation, I can...