About 79,100 results
Open links in new tab
  1. lua - Roblox Admin Command Script - Stack Overflow

    Aug 6, 2013 · Roblox Admin Command Script Asked 12 years, 4 months ago Modified 6 years, 11 months ago Viewed 220k times

  2. Running a command as Administrator using PowerShell?

    Sep 12, 2016 · 34 You can create a batch file (*.bat) that runs your powershell script with administrative privileges when double-clicked. In this way, you do not need to change anything …

  3. Batch script: how to check for admin rights - Stack Overflow

    Oct 29, 2010 · How do I check if the current batch script has admin rights? I know how to make it call itself with runas but not how to check for admin rights. The only solutions I've seen are …

  4. How to code a BAT file to always run as admin mode?

    Mar 23, 2017 · The answers provided by both Kerrek SB and Ed Greaves will execute the target file under the admin user but, if the file is a Command script (.bat file) or VB script (.vbs file) …

  5. How to create a batch file to run cmd as administrator

    Jul 17, 2012 · I need to run a batch file which needs to register a DLL. The DLL registration is failing because the Batch file is not starting the command prompt as "administrator". Is there …

  6. Run PowerShell script as a different user and elevated

    Jan 21, 2021 · Your domain admin user will require access permissions (as a minimum, read only) to the script you are calling even when they are not elevated You are currently checking …

  7. Force a program to run *without* administrator privileges or UAC?

    Aug 4, 2010 · And if you run as admin, the title will be "Administrator: Command Prompt". If you create it with runas /trustlevel:0x20000 cmd.exe, the window title is "Administrator: cmd.exe …

  8. how to run a powershell script as administrator - Super User

    Feb 12, 2010 · On my Windows 7 Desktop, I have script.ps1, which needs admin privileges (it starts a service). I want to click on this script and run it with admin privileges. What's the …

  9. Windows Powershell policy execution bypass - Stack Overflow

    Apr 26, 2021 · From the Use Group Policy to Manage Execution Policy section (emphasis added): You can use the Turn on Script Execution Group Policy setting to manage the execution policy …

  10. windows - How can I auto-elevate my batch file, so that it requests ...

    The script takes advantage of the fact that whoami combined with find checks for administrator membership (built in group S-1-16-12288 in Windows) and returns errorlevel 1 if you don't …