I have been asked to supply a deploy-able version of Notepad++. I am running into problems when I am trying to call on the custom functions of PSADT.
The running process for Notepad++ is "notepad++.exe"
I assume that since the + is a special character in PS this is causing me issues.
While
Also since I created an MSI that turns off updating I would have like to use the
I am pretty new to PS so if you have any advice it would be appreciated.
The running process for Notepad++ is "notepad++.exe"
I assume that since the + is a special character in PS this is causing me issues.
Show-InstallationWelcome -CloseApps "notepad++" -silent
responds with: "Bad argument to operator '-match': parsing "notepad++" - Nested quantifier +,,()"While
"Stop-Process -processname "notepad++"
works just fineAlso since I created an MSI that turns off updating I would have like to use the
Remove-MSIApplications "notepad++"
I get the same error: "Bad argument to operator '-match': parsing "notepad++" - Nested quantifier +,,()"I am pretty new to PS so if you have any advice it would be appreciated.