View Single Post
Old Feb 15, 2013, 07:57 PM   #141
newtekie1
Semi-Retired Folder
 
newtekie1's Avatar
 
Join Date: Nov 2005
Location: Indiana
Posts: 17,763 (6.48/day)
Thanks: 780
Thanked 5,119 Times in 3,709 Posts

System Specs

Quote:
Originally Posted by MxPhenom 216 View Post
What was it running before?
The specs are still listed for the old hardware. Celeron E3200@4.0GHz / eVGA 780i A1 / 8GB G.Skill DDR2-800 4-4-4-12

I ordered a A4-5300 / AsRock FM2A75 Pro4 / 8GB Corsair DDR3-1600 9-9-9-24. I also ordered a new NZXT Source 210 case because the old case was a too cramped.

Quote:
Originally Posted by MxPhenom 216 View Post
I booted back up my main rig this morning, and it failed to connect to the network drive. I read I might have to make a batch file that starts up on boot every time so it reconnects the network drive automatically. Waiting for Newtekie to see if he has information on this.
You shouldn't have to do that, when you boot your main rig it should just reconnect the mapped drive. Though I have seen sometime where when a computer boots it will say it couldn't reconnect all the network drives. You just go into computer and if the mapped drive has a red X on it you double click it to reconnect, but even that shouldn't be necessary unless for some reason your main computer isn't getting network access right when it boots. If you keep having problems with the mapped drive not reconnecting after a reboot and it annoys you to the point that you really want to automate it you can write a batch file to remap the drive on every boot. The one I use looks like this:

Code:
ping 192.168.1.1 -n 10
net use s: /d
net use s: \\server\share /user:newtekie1 password /PERSISTENT:Y
The ping command pinging my router at the beginning just adds about a 10 second wait time before the actual mapping command executes to make sure your network connection is established. And if it isn't established it will actually wait longer, because it the ping command will have to wait for the timeout.

The first net use command delete the shared drive, I do this to make sure the second command complete successfully and doesn't conflict. Sometimes if you don't don't delete the mapped drive first the command to remap the drive won't work.

And finally the last line maps the share named "share" located on the computer named "server" to drive letter S with my username and password(which isn't really password ).

So everything in red you are basically going to have to change to match your setup.
__________________

Rig1: System Specs.
Rig2: A8-5600K@4.4GHz / AsRock FM2A75 Pro4 / 8GB Corsair DDR3-1600 9-9-9-24 / HD7560D / Samsung DVD-Burner / 1.5TB WD Green + 3x3TB WD RED in RAID5
Rig3: Athlon X2 4200+ / M4A79 Deluxe / 4GB G.Skill Pi DDR2-800 4-4-4-12 / GT430 / Sony DVD-Burner / 500GB WD
Rig4: Phenom II x6 1605T @ 3.6GHz / Asus M5A99X Evo / 8GB PNY DDR3-1600 9-9-9 / GTX470 & GTX470 / Samsung DVD-Burner / 1.5TB Seagate

Last edited by newtekie1; Feb 15, 2013 at 08:13 PM.
newtekie1 is online now  
Crunching for Team TPU More than 25k PPD
Reply With Quote