Enable Windows Authentication for LiveView
You can use Windows Authentication for logging in to LiveView. If you want to use Windows Authentication, you must follow standard IIS authentication methods.
NOTE: These steps are specific to Windows 7; they may be different for other operating systems. For further assistance, view Microsoft's documentation on this topic at: http://technet.microsoft.com/en-us/library/cc754628(v=ws.10).aspx
To enable Windows Authentication for LiveView:
- Turn on Windows Authentication:
- From the Control Panel, click Programs and Features > Turn Windows features on or off.
- Check Windows Authentication.
- Enable Windows Authentication in IIS:
- From the Control Panel > Administrative Tools, choose Internet Information Services (IIS).
- Select the root node from the tree on the left (or the LiveViewViewer node, if this server hosts multiple sites).
- From the right pane, in the IIS section, click Authentication.
- Enable Windows Authentication.
- Modify web.config to specify Windows Authentication:
- In Windows Explorer, navigate to ...\Power Operation\v2024\Applications\LiveView\Viewer
- Open
web.config
. - Change the line:
<authentication mode="Forms">
to<authentication mode="Windows">
- Add roles to
web.config
to allow access to the LiveView application. For example, to allow the role (group) Administrators, add the following to theweb.config
file:<authorization>
<allow roles="Administrators"/>
<deny users="?" />
</authorization>
Modifying the web.config file is an advanced topic that is covered on the Microsoft Web site:
http://www.iis.net/configreference/system.webserver/security/authentication/windowsauthentication
Additional information is available in the following Microsoft knowledge base article:
http://support.microsoft.com, and then search on kb/815179.