programmatically disabling browser menu File save as

  • Thread starter Thread starter Shashidhar
  • Start date Start date
S

Shashidhar

i want to disable File Save As option from browser menu.
How can i achieve this, sothat i can prevent users
browsing my site tfrom saving pages in my site, especially
the images on my page.
 
Hi Shashidhar,

Internet Explorer Restrictions
http://www.winguides.com/registry/display.php/442/

Change the values to 1 [enable restriction]

"NoBrowserSaveAs"Removes the "File, Save as..." menu item.
"NoBrowserSaveWebComplete"Removes the "File, Save as web (complete)" menu
item.

If the entry does not exist, create one.(type : REG_DWORD)

--
Regards,
Ramesh [MS-MVP]
AIM: SRamesh2k


~ Please reply to newsgroup ~


i want to disable File Save As option from browser menu.
How can i achieve this, sothat i can prevent users
browsing my site tfrom saving pages in my site, especially
the images on my page.
 
To programatically disable the option, use REG script:

=====
REGEDIT4

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet
Explorer\Restrictions]
"NoBrowserSaveAs"=dword:00000001
"NoBrowserSaveWebComplete"=dword:00000001

=====

--
Regards,
Ramesh [MS-MVP]
AIM: SRamesh2k


~ Please reply to newsgroup ~


Hi Shashidhar,

Internet Explorer Restrictions
http://www.winguides.com/registry/display.php/442/

Change the values to 1 [enable restriction]

"NoBrowserSaveAs"Removes the "File, Save as..." menu item.
"NoBrowserSaveWebComplete"Removes the "File, Save as web (complete)" menu
item.

If the entry does not exist, create one.(type : REG_DWORD)

--
Regards,
Ramesh [MS-MVP]
AIM: SRamesh2k


~ Please reply to newsgroup ~


i want to disable File Save As option from browser menu.
How can i achieve this, sothat i can prevent users
browsing my site tfrom saving pages in my site, especially
the images on my page.
 
Back
Top