Skip to content
View in the app

A better way to browse. Learn more.

TES Projects

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Stop Windows from Prompting about Changes when Program runs as Administrator

Featured Replies

I have a couple of applications that have to run with administrator privileges. One in particular is the Construction Set Extender (CSE). However I am getting tired of Windows prompting me to confirm that I want to allow it to make changes to my PC. In order to fix this you have two options. The first is to disable the UAC. Doing that will leave you open to attack if you happen to run a program with malicious code in it, so that is a very bad idea.

So I searched for a solution that doesn't require you to disable the UAC. I have to ask why Microsoft just doesn't add a white list option for us to add such programs to, but they probably don't know how.

Here's the process for stopping the prompt:

Create an Elevated Task

  • Open the Start menu, type Task Scheduler, and open the tool.

  • Click Create Task in the right-hand panel.

  • Name the task under the General tab.

  • Check the box for Run with highest privileges.

  • Go to the Actions tab, click New, select Start a program, and browse to choose your app's .exe file.

  • Click OK to save the task.

 Make a Desktop Shortcut

  • Right-click your desktop and select New > Shortcut.

  • Paste the following command into the location box: schtasks /run /tn "YourTaskName" (replace YourTaskName with the exact name you used).

  • Click Next, name your shortcut, and click Finish.

  • Double-click your new shortcut to launch the app cleanly without a UAC prompt.

So far I just continue to click Yes...

Unfortunately, doesn't work with the .BAT file launcher I use for the CSE.

EDIT

Fixed, Google AI told me what to change in the .BAT script.

  • Author
7 hours ago, Vorians said:

Fixed, Google AI told me what to change in the .BAT script.

Well, what was it then? )

The .BAT file contained the line "cd .\" which means work in the same folder as the .BAT file. Launching it via the elevated privileges command caused Windows to think it was meant to be working in the same folder as schtasks.exe, which is the Windows\System32 folder, so even with elevated privileges Windows blocked it from editing anything in such an essential location, access denied (and it would have failed anyway since the DLL and EXE files the .BAT file touches aren't in System32).

Google AI said to replace that line with "cd /d "%~dp0"" which redirects back to the same folder as the .BAT file.

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.