Internet Explorer
For Internet Explorer you can use -k (kiosk mode):
Starts Internet Explorer in kiosk mode. The browser opens in a maximized window that does not display the address bar, the navigation buttons, or the status bar.
Example:
iexplore.exe -k http://www.google.com/
Read more about this:
Internet Explorer Command-Line Options (native commands)
Open Internet Explorer in Specific Height and Width (script)
Firefox
Firefox command line option -fullscreen didn't work for me:
"firefox.exe" -url http://superuser.com -fullscreen
But the use of R-kiosk 0.9.0 extension by Kimmo Heinaaro works like a charm.
Answer from Zuul on Stack ExchangeReal Kiosk is a Firefox extension that defaults to full screen, disables all menus, toolbars, key commands and right button menus. Alt+Home still takes you home.
Internet Explorer
For Internet Explorer you can use -k (kiosk mode):
Starts Internet Explorer in kiosk mode. The browser opens in a maximized window that does not display the address bar, the navigation buttons, or the status bar.
Example:
iexplore.exe -k http://www.google.com/
Read more about this:
Internet Explorer Command-Line Options (native commands)
Open Internet Explorer in Specific Height and Width (script)
Firefox
Firefox command line option -fullscreen didn't work for me:
"firefox.exe" -url http://superuser.com -fullscreen
But the use of R-kiosk 0.9.0 extension by Kimmo Heinaaro works like a charm.
Real Kiosk is a Firefox extension that defaults to full screen, disables all menus, toolbars, key commands and right button menus. Alt+Home still takes you home.
For chrome/chromium it is the --app=http://address.com flag.
You would use it by calling chromium-browser --app=http://some.website.org or google-chrome --app=http://www.google.com or chrome.exe --app=http://you.get.it etc.
All available switches: http://peter.sh/experiments/chromium-command-line-switches/
EDIT: You might also want to take a look at the --kiosk flag.
The best way to do it with .net is by console application with reference to the COM object of IE.
Instructions:
Create new console application in VS and reference to the Microsoft Internet Controls (SHDocVw) type library.
Example in c#:
SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorer();
ie.Navigate(url);
ie.ToolBar = 0;
ie.AddressBar = false;
ie.Visible = true;
see more details at msdn: http://msdn.microsoft.com/en-us/library/aa752084(v=vs.85).aspx
var ie = new ActiveXObject("InternetExplorer.Application");
ie.Navigate("C:\\sample.htm");
ie.AddressBar = false;
ie.MenuBar = false;
ie.ToolBar = false;
// ... etc ... customize your heart out
ie.Visible = true;
how to hide address bar in file explorer
Remove/Hide Internet Explorer 9,10,11 Web Address Bar
Remove addressbar, toolbar and searchbar in IE
c# - .NET Process to open web page without tabs or address bar - Stack Overflow
Microsoft Support had the answer, unsurprisingly.
http://support.microsoft.com/kb/962963
- Close all open Internet Explorer and Windows Explorer windows.
- Click Start, and then click Run.
- In the Open box, type regedit, and then click OK.
- Locate and then click the following registry subkey: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar
- Use one or both of the following steps, as appropriate for your situation: * For Windows Explorer: In the details pane, locate the Explorer subkey, and then open it. In the details pane, locate the ITBarLayout value. Right-click this value, and then click Delete. * For Internet Explorer: In the details pane, locate the WebBrowser subkey, and then open it. In the details pane, locate the ITBarLayout value. Right-click this value, and then click Delete.
- On the File menu, click Exit to exit Registry Editor.
- Restart Internet Explorer
I think there were a key shortcut CTRL+M. Not very sure about it.
And it is not good to let your cat near your computers. Their hair tends to clog the cooling fans and it is more likely that an overheat will occure.
Hi KingBerly.
You can hide the address bar in the registry.
Open regedit and create the following keys:
- HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\ToolBars\Restrictions
- Under Restrictions Key create a DWORD registry with the name NoNavBar and a value of 1
- Logoff or reboot and the Address Bar is gone. To enable it again change the value to 0 or remove the key.
[Tested on Win7 32 and 64bits]
Hi Spiceheads,
Have you folks tried locking out or disabling the IE 9,10,11 Web Address Bar? Aside from turning it to full screen/kiosk, is there any existing .reg file out there i can use 
OS VERSION : ALL WINDOWS 7 Flavor x32/x64 bit
Thanks in advance spiceheads
Try this:
dynamic ie = Activator.CreateInstance(Type.GetTypeFromProgID("InternetExplorer.Application"));
ie.AddressBar = false;
ie.MenuBar = false;
ie.ToolBar = false;
ie.Visible = true;
ie.Navigate("www.google.com");
This uses automation to achieve what you want.
You can also set the position, add event handlers, etc.
The documentation for this interface is here.
If you want to acheive browser automation then you should use Selenium webdriver