Net Services Suite

General help

net /?

Account and Computer Management

Gives password policy's

net ACCOUNTS

Used in AD, add user / delete user

net COMPUTER

Server Configuration

Works in AD

net CONFIG Server

Viewing Local and Remote Shares

  • Display a list of local shares

net share
  • List the shares on remote computer

net view \\192.168.29.18 
  • List all shares on remote computer, including hidden shares

net view \\192.168.29.18 /all

Connecting to a remote share

  • connect using specific user credentials

net use \\192.168.29.18 /user:Administrator DevNull@123
  • View shares on remote computer

net view \\192.168.29.18 
  • Connect to a remote share with a drive letter

net use t: \\192.168.29.18\data \user:DevNull 123
  • Disconnect the mapped drive

net use t: /delete

Managing Network Sessions and Files

  • View active network sessions

net session
  • view open files over the network

net file

Workstation and Server Configuration

  • View server configuraion

net config server
  • View workstation configuration

net config workstation

Network Time Synchronization

net TIME

Last updated