Posted On March 31, 2019

How to set VNC shortcut to run as another user

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to set VNC shortcut to run as another user
In order to make the VNC program run as another user you can do either of the 2 following options:
 
1)      Click Start > All Programs > Ultra VNC and hold down the Shift key while right-clicking on the Ultra VNC Viewer icon
Now you can choose the Run as different user option and enter the credentials
 2)      This second method uses a shortcut on the desktop:
 Right-click an empty area on the desktop > New > Shortcut
When prompted to enter the location of the item enter the following:
                C:\Windows\System32\runas.exe /savecred /user:kimconnect\*** "C:\Program Files\UltraVNC\vncviewer.exe"
                (you will replace the *** with the username of the desired user)
Click Next
Give it a name (ex- VNC)
Click Finish
 
Now when you double-click the icon it should run with the credentials entered

Leave a Reply

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

Related Post

How To Use Command Line to Configure iDrac Settings

Step 1: Install RacADM $computerlist=@' SERVER1 SERVER2 '@ $computernames=@($computerlist -split "`n")|%{$_.Trim()} $fileURL="https://dl.dell.com/FOLDER08543783M/1/DellEMC-iDRACTools-Web-WINX64-10.3.0.0-4945.exe" $expectedExecutable='racadm.exe' $expectedInstallPath='C:\Program Files\Dell\SysMgt\iDRACTools\racadm'…

HPe Nimble Storage & Microsoft Failover Cluster with Fileserver Roles

Overview: Microsoft Fail-over Clustering is often deployed in conjunction with SAN storage. In this scenario,…

PowerShell: Kill a Windows Service Forcefully

# killService.ps1 $serviceName='vmms' function killService($serviceName='Spooler',$restart=$false){ $processId=Get-WmiObject -Class Win32_Service -Filter "Name LIKE '$serviceName'"|Select-Object -ExpandProperty ProcessId if($processId.count…