Showing posts with label command prompt. Show all posts
Showing posts with label command prompt. Show all posts

To find Computer Model or Laptop Model using Command Prompt

To get Computer or laptop model, manufaturer using Command Prompt use the following commands.




wmic csproduct get vendor, version

wmic computersystem get model,name,manufacturer,systemtype


***************************SAUDI APPS DBA**************************************

Download files using Command prompt in Windows


Use the below Command to download files using Command prompt


Command 

C:\>powershell -command "& { iwr <WEBSITE LINK> -OutFile <File_Name> }"

Example

C:\>powershell -command "& { iwr http://th00.deviantart.net/fs70/PRE/f/2013/074/
a/0/kali_linux_wallpaper_by_humanlly-d5y4g08.png -OutFile kali.png }"

******************SAUDI APPS DBA******************