Guest User

Untitled

a guest
Jan 19th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. for /f "tokens=*" %%a in (ip.txt) do (
  2. wmic /node:%%a /user: /password: computersystem get Name, Model, totalphysicalmemory /format:list
  3. wmic /node:%%a /user: /password: cpu get Name /format:list
  4. wmic /node:%%a /user: /password: path Win32_VideoController get Name /format:list
  5. wmic /node:%%a /user: /password: os get Caption /format:list
  6. wmic /node:%%a /user: /password: csproduct get identifyingnumber /format:list
  7. wmic /node:%%a /user: /password: desktopmonitor get screenheight, screenwidth /format:list
  8. wmic /node:%%a /user: /password: memorychip get capacity /format:list
  9. )>"%%a.txt"
  10.  
  11. /user: %user%
  12. /password: %password%
Add Comment
Please, Sign In to add comment