<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Login Script help to map a network drive on different server in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672629#M6750</link>
    <description>if the username and password match, simply omit the /user directive. &lt;BR /&gt;&lt;BR /&gt;consider creating a domain. this will allow you to set up a single point of control for all passwords, and users can use their own account to connect to shares.</description>
    <pubDate>Wed, 16 Nov 2005 14:36:12 GMT</pubDate>
    <dc:creator>Thomas Bianco</dc:creator>
    <dc:date>2005-11-16T14:36:12Z</dc:date>
    <item>
      <title>Login Script help to map a network drive on different server</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672625#M6746</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Total newbie at this so please bear with me.  Am currently using a simple batch file login script to map to a network drive.&lt;BR /&gt;&lt;BR /&gt;The password for all users is the same (Rather cryptically it is password) which takes you on to a seperate server where the app has associated security levels and passwords, etc.&lt;BR /&gt;&lt;BR /&gt;Can I edit this batch file to negate the need for users to type in passowrd.  Can the script do this for me?  If so, how?&lt;BR /&gt;&lt;BR /&gt;Script below:&lt;BR /&gt;&lt;BR /&gt;echo OFF&lt;BR /&gt;net use p: /d&lt;BR /&gt;CLS&lt;BR /&gt;net use p: \\school-admin.solgrid.local\mis /USER:solgrid\s206jsmith&lt;BR /&gt;cd "C:\Program Files\SIMS\SIMS .net\"&lt;BR /&gt;"C:\Program Files\SIMS\SIMS .net\SIMSLoad.exe" "C:\Program Files\SIMS\SIMS .net\Pulsar.exe"&lt;BR /&gt;&lt;BR /&gt;Thanks for any help.</description>
      <pubDate>Wed, 16 Nov 2005 06:30:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672625#M6746</guid>
      <dc:creator>Will Keddie</dc:creator>
      <dc:date>2005-11-16T06:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Login Script help to map a network drive on different server</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672626#M6747</link>
      <description>It seems to be related with windows. Plz move to related forums.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Nov 2005 06:33:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672626#M6747</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-16T06:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Login Script help to map a network drive on different server</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672627#M6748</link>
      <description>Sure, just add the password on to the end of the "NET USE" command.  i.e.:&lt;BR /&gt;&lt;BR /&gt;net use p: \\school-admin.solgrid.local\mis /USER:solgrid\s206jsmith password&lt;BR /&gt;&lt;BR /&gt;Jon</description>
      <pubDate>Wed, 16 Nov 2005 11:03:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672627#M6748</guid>
      <dc:creator>Jon Finley</dc:creator>
      <dc:date>2005-11-16T11:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Login Script help to map a network drive on different server</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672628#M6749</link>
      <description>Will:&lt;BR /&gt;&lt;BR /&gt;Here are the options for the Net Use command...&lt;BR /&gt;&lt;BR /&gt;Microsoft Windows XP [Version 5.1.2600]&lt;BR /&gt;(C) Copyright 1985-2001 Microsoft Corp.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;net use /?&lt;BR /&gt;The syntax of this command is:&lt;BR /&gt;&lt;BR /&gt;NET USE&lt;BR /&gt;[devicename | *] [\\computername\sharename[\volume] [password | *]]&lt;BR /&gt;        [/USER:[domainname\]username]&lt;BR /&gt;        [/USER:[dotted domain name\]username]&lt;BR /&gt;        [/USER:[username@dotted domain name]&lt;BR /&gt;        [/SMARTCARD]&lt;BR /&gt;        [/SAVECRED]&lt;BR /&gt;        [[/DELETE] | [/PERSISTENT:{YES | NO}]]&lt;BR /&gt;&lt;BR /&gt;NET USE {devicename | *} [password | *] /HOME&lt;BR /&gt;&lt;BR /&gt;NET USE [/PERSISTENT:{YES | NO}]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You should be able to set the password...&lt;BR /&gt;&lt;BR /&gt;net use p: \\school-admin.solgrid.local\mis /USER:solgrid\s206jsmith password&lt;BR /&gt;&lt;BR /&gt;but it might take some fooling around with.  These options are from XP and Windows 2003.  Windows 2000 might be a little different.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Steven</description>
      <pubDate>Wed, 16 Nov 2005 11:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672628#M6749</guid>
      <dc:creator>Steven Clementi</dc:creator>
      <dc:date>2005-11-16T11:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Login Script help to map a network drive on different server</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672629#M6750</link>
      <description>if the username and password match, simply omit the /user directive. &lt;BR /&gt;&lt;BR /&gt;consider creating a domain. this will allow you to set up a single point of control for all passwords, and users can use their own account to connect to shares.</description>
      <pubDate>Wed, 16 Nov 2005 14:36:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/login-script-help-to-map-a-network-drive-on-different-server/m-p/3672629#M6750</guid>
      <dc:creator>Thomas Bianco</dc:creator>
      <dc:date>2005-11-16T14:36:12Z</dc:date>
    </item>
  </channel>
</rss>

