Files
notes-infineon/_-Review/infinityqs.md
2024-06-03 07:04:29 -07:00

37 lines
1.4 KiB
Markdown

---
type: "topic"
created: "2024-01-14T02:18:22.109Z"
updated: "2024-04-02T15:55:01.970Z"
---
# InfinityQS
- [Update IQS](../.kanbn/tasks/update-iqs.md)
[MET08RESISRP2100](../EAF/Runtime/srp.md)
```bash
"C:\Program Files (x86)\InfinityQS International\ProFicient\Applications\iispcmi.exe"
runas /profile /user:phares@infineon "C:\Program Files (x86)\InfinityQS International\ProFicient\Applications\iispcmi.exe"
C:\Windows\PsExec.exe -user "infineon\ecfisysadmin" -p "asdf" "C:\Program Files (x86)\InfinityQS International\ProFicient\Applications\iispcmi.exe"
```
```PowerShell
$username = "infineon\ecfisysadmin"
$password = "asdf"
$startWithElevatedRights = "notepad"
$credentials = New-Object System.Management.Automation.PSCredential -ArgumentList @($username,(ConvertTo-SecureString -String $password -AsPlainText -Force))
$ps = Start-Process -PassThru -FilePath powershell -Credential $credentials -ArgumentList '-noprofile -command &{Start-Process ', $startWithElevatedRights, ' -Wait -verb runas}'
$ps.WaitForExit()
# https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/start-process?view=powershell-7.4
Start-Process -FilePath "iispcmi.exe" -WorkingDirectory "C:\Program Files (x86)\InfinityQS International\ProFicient\Applications"
```
```Tue Apr 02 2024 08:54:55 GMT-0700 (Mountain Standard Time)
HgCV Res Average
Ian Palmer
```