Search notes:

PowerShell Cmdlet: Start-Process

-ArgumentList

-argumentList is followed by an array that is passed as command line arguments to the executable being started:
start-process excel -argumentList /e, /p, "$pwd"
It's also possible to embed the arguments into a string:
start-process powershell -argumentList "-noExit -noProfile -command echo 'Hello world'"

Start process with administrator privileges

With -verb runas, a process can be started with administrator privileges:
start-process powershell -verb runas

See also

start-job
The command parameter -credential.
Powershell command noun: process

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Windows/...', 1759562271, '216.73.216.149', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Windows/PowerShell/command-inventory/noun/process/start/index(56): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78