
Main Menu
Brad's TechTips - Small Business Server (SBS)
[<<
Full list of SBS tips.]
SBS Remote Web Workplace - Disable the Drive-Mapping Option
CREDIT:
This information is from Chad Gross who posted the tip on his MVP blog.
SBS Remote Web Workplace - Disable the Drive-Mapping Option
- On your SBS, navigate to c:\inetpub\remote.
- Find the SelectPC.aspx file and make a copy of it.
- Rename the copy you just made to SelectPC_Original.aspx.
- Open the SelectPC.aspx file in Notepad.
- Find the following group of lines near the bottom of the file:
<asp:CheckBox TabIndex="5" id="checkConsole" runat="server" CssClass="optionText"></asp:CheckBox>
<asp:checkbox TabIndex="6" id="checkConnect" runat="server" CssClass="optionText" Checked="true"></asp:checkbox>
<asp:CheckBox TabIndex="7" id="checkDrives" runat="server" CssClass="optionText"></asp:CheckBox>
<asp:CheckBox TabIndex="8" id="checkPrinters" runat="server" CssClass="optionText" Checked="True"></asp:CheckBox>
<asp:CheckBox TabIndex="9" id="checkAudio" runat="server" CssClass="optionText"></asp:CheckBox>
- Replace the above lines with the following and do not change their order:
<asp:CheckBox TabIndex="5" id="checkConsole" runat="server" CssClass="optionText"></asp:CheckBox>
<asp:checkbox TabIndex="6" id="checkConnect" runat="server" CssClass="optionText" Checked="true"></asp:checkbox>
<asp:CheckBox TabIndex="7" id="checkPrinters" runat="server" CssClass="optionText" Checked="True"></asp:CheckBox>
<asp:CheckBox TabIndex="8" id="checkAudio" runat="server" CssClass="optionText"></asp:CheckBox>
<asp:CheckBox TabIndex="9" id="checkDrives" runat="server" visible="false" CssClass="optionText"></asp:CheckBox>
- Save the SelectPC.aspx file and then test using RWW.
CREDIT:
This information is from Chad Gross who posted the tip on his MVP blog.