There's a program called MBRfix by Kåre Smith in Norway. It must be run with ADMIN privileges, and it requires multiple parameters... so, a user cannot simply right-click on it and choose "Run as administrator"!
In order to use this program to help very inept users (like many old, first-time computer users with Windows 10, or 8 or 7), I need to create a batch/cmd file for them to simply click on and run; or at the most, right-click on and choose "Run as administrator". But if I do that with this batch file:
@echo off
echo.
MBRFIX.EXE /drive 0 savembr Disk0MBR
echo.
echo.
pause
It always comes back with: " 'MBRFIX.EXE' is not recognized as an internal or external command, operable program or batch file." (I've used both .bat and .cmd files, and in fact, it doesn't matter if you have any parameters/arguments at all, Win 10 simply will not run any program as ADMIN from inside a batch file like this!)
I am working on coding my own program to open the Win UAC and ask user to run as ADMIN with built-in commands... But that will be very tedious compared to using Kåre's ready to go program.
The reason neither "runas" nor "psexec" can be used is: They both require an ADMIN account with a login password... Well, my PC does not have one (on purpose) and neither do many other users who've had their PCs set up with good security (or, they were never set up as ADMIN).
So, is this possible? Or must we either school the inept user on how to open an ADMIN command prompt window (or PowerShell window) and use specific commands to navigate and parameters from a webpage or email in order to finally use mbrfix.
Dan, TheStarman.