Difference between revisions of "How to capture or backup network configuration"

From Tech-Wiki
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
[[Category:Microsoft]]
 
[[Category:Microsoft]]
 +
'''[[Microsoft#Misc|Back to Misc]]'''
 +
  
 
How to backup network configuration on Windows operating systems to text file. This can be used to restore the configuration at a later date.
 
How to backup network configuration on Windows operating systems to text file. This can be used to restore the configuration at a later date.
Line 5: Line 7:
 
From an Administrator Command Prompt.
 
From an Administrator Command Prompt.
  
  C:\>netsh dump interface > c:\ifbackup.txt
+
  netsh dump interface > c:\ifbackup.txt
  
  
Line 12: Line 14:
 
From an Administrator Command Prompt.
 
From an Administrator Command Prompt.
  
  C:\>netsh exec c:\ifbackup.txt
+
  netsh exec c:\ifbackup.txt

Latest revision as of 12:17, 20 August 2024

Back to Misc


How to backup network configuration on Windows operating systems to text file. This can be used to restore the configuration at a later date.

From an Administrator Command Prompt.

netsh dump interface > c:\ifbackup.txt


To restore network configuration.

From an Administrator Command Prompt.

netsh exec c:\ifbackup.txt