Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

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.

Require administrator in MASM ???

Featured Replies

Posted

Require administrator in MASM ???
How to do it?

Tried with this manifest.xml

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
   <assemblyidentity version="1.0.0.0" processorArchitecture="X86" name="Name of your application" type="win32"></assemblyidentity>
   <description>Description of your application</description>
   <!-- Identify the application security requirements. -->
   <trustinfo xmlns="urn:schemas-microsoft-com:asm.v2">
      <security>
         <requestedprivileges>
            <requestedexecutionlevel level="requireAdministrator" uiAccess="false"></requestedexecutionlevel>
         </requestedprivileges>
      </security>
   </trustinfo>
</assembly>

in rsrc.rc
//
// Manifest resources
//
LANGUAGE 0, 0
1                  RT_MANIFEST    ".\\app.manifest"

But it doesn't work!
 

 

  • Author

Solved my problem.
Just replaced LANGUAGE 0, 0
1                  RT_MANIFEST    ".\\app.manifest"
WITH:
1 MANIFEST DISCARDABLE "app.manifest"

All works ok now!
 

Create an account or sign in to comment

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.