we are pleased to offer the CD/DVD content as a free download via O'Reilly Media's Digital Distribution services. To download this content, please visit O'Reilly's web site, search for the title of this book to find its catalog page, and click on the link below the cover image (Examples, Companion Content, or Practice Files). Note that while we provide as much of the media content as we are able via free download, we are sometimes limited by licensing restrictions. Please direct any questions or concerns to booktech@oreilly.com.
http://shop.oreilly.com/category/customer-service/faq-examples.do
Showing posts with label Tips. Show all posts
Showing posts with label Tips. Show all posts
Sunday, 27 November 2011
Wednesday, 27 July 2011
How do I connect to a network share via the Windows Command Prompt?
use net use, example:
net use X: \\SERVER\Share
Where X: is the drive letter you wish to map the share to, and \\SERVER\Share is the UNC path to the share. This should make the share visible in My Computer and the command line as well like all other shares mapped through the GUI.
net use X: \\SERVER\Share
Where X: is the drive letter you wish to map the share to, and \\SERVER\Share is the UNC path to the share. This should make the share visible in My Computer and the command line as well like all other shares mapped through the GUI.
How list everything in a folder and its subfolders
List all Files Recursively
C:\>dir /s
To save them to a file
C:\> /s /b>filelist.txt
View them a page at a time
C:\>dir /s | more
This should output the entire structure
tree /f
C:\>dir /s
To save them to a file
C:\> /s /b>filelist.txt
View them a page at a time
C:\>dir /s | more
This should output the entire structure
tree /f
Subscribe to:
Posts (Atom)