Home » Questions » Computers [ Ask a new question ]

Run applications in a non-admin account(when gpedit.msc is disabled by admin) in xp

Run applications in a non-admin account(when gpedit.msc is disabled by admin) in xp

How can I run restricted applications in a non-admin account if gpedit.msc is disabled by an admin. Is it possible?

Asked by: Guest | Views: 297
Total answers/comments: 2
Guest [Entry]

If you are loging in with a standard user account with no administrative rights and Gpedit.msc is disabled, there is not a lot that you can do. I've been checking on the web to prove I could be wrong but...
Guest [Entry]

"You can install and use restricted programs without admin rights (i know this works on Windows 7+). Uniextractor/unzip probably won't work because it still can't run admin applications.

Place your installer that needs admin (has the UAC icon on it) on your desktop.
Open notepad.
Enter this code:

set __COMPAT_LAYER=RunAsInvoker
start """" ""Name of Installer File.exe""

File > Save As..
File Type (All Files)
Save to desktop as IgnoreAdmin.bat
Open file.
Done :)

This basically sets the internal compatibility settings to run the file at the highest privilege you have no matter what the file's preset RunAs parameter is. Some files will still check for admin afterwards.
To get the file to install correctly, you need to select a directory of installation that doesn't require admin (Installing to C:/Program Files/AppName won't work). Try installing to the desktop/AppName."