Posted On March 31, 2019

Quick 1-liner: Elevated command to access control panel items

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Quick 1-liner: Elevated command to access control panel items

runas /user:{domainname}\{username} “control appwiz.cpl”

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

A Fake 512GB USB Thumb Drive

There appears to be a flood of bad USB flash drives on the market at…

Projects for Mystery Client in 2005

Mystery Client Technology Overview Last year Mystery Client upgraded to Microsoft Exchange 2003. This had…

PowerShell: Install Apps On List of Computers

[string[]]$computers=@( 'SERVER01', 'SERVER02', 'SERVER03' ) [string]$chocoAppName='notepad2' [version]$minVersion='4.2.25.20160422' $results=[hashtable]@{} foreach ($computer in $computers){ $result=invoke-command -computer $computer…