

Type Manage Windows Credentials on search box and hit it to open Credential Manager. If you still have enter network credentials access error on Windows 10, you can manually add a credential of the computer you want to access. What I’m more interested in, is is there a possibility to limit the output (like I don’t need the list of hotfixes).Solution 2: Add a Windows Credential in Credentials Manager The batchfile for that isn´t that hard to make. Or just make a loop in your batch-file, trying to get the systems info by just querying all iP-addresses in your network (that’s 254 possibilities in a class C network). It can be done, but is gonna take some work. If you want to scan the entire network, getting system info for all machines you encounter, it’s gonna be a little more work (like first scan the network, create a list with present computers, use that list as input on getting information for this systems). Or you make a list with all computernames, and read that file line by line, giving the computername as parameter when calling a function in you batch-file (asuming they all have the same username / password like in a domain environment). You can write a batch-file with a line for each computer. Systeminfo /s BKKPDC010 /u virtualadministrator /p password Display System Information on remote computer specifying username is “virtualadministrator” and password is “password”.Display System Information on remote computer without specify username and password.Display System Information on local computer.If the current user logon that execute this command already has privilege on remote machine (for instance, Domain Administrators), you don’t have to use /u and /p. Note:This command is not available in Windows 2000 but you can still query Windows 2000 computer by running this command on Windows XP or Windows 2003 computer and set remote computer to Windows 2000 computer. password is the password of the username.username is the user on the remote computer.remote host is the IP Address or Hostname of the remote computer.Systeminfo /s remote host /u username /p password This command also can query remote computer. To run this command, type this in command-line Virtual Memory (Max Size, Available, In Use) and Page File Location(s).Total Physical Memory and Available Physical Memory.System Locale, Input Locale and Time Zone.System Up Time, System Manufacturer, System Model, System Type.Registered Owner, Registered Organization.OS Name, OS Version, OS Manufacturer and OS Build Type.
