How to Enable or Disable Your Computer’s Touch Screen in Windows 10??? We’re all familiar with touch screen tablets, but some laptops also have touch screens. We think they’re pretty useful, but if you tend to use your laptop with the standard keyboard and mouse combination, you can disable the touch screen on your Windows 10 device pretty easily. To disable the touch screen in Windows 10, press Windows+X on your keyboard to access the Power User menu, then select “Device Manager”. Maybe you’re showing someone how to do something on your laptop and you end up touching the screen and doing something unintentional. Or maybe you don’t use the touch screen. It would be helpful if you could disable the touch screen, even temporarily. There is no built-in way of disabling the touch screen, but it’s easy to do so using the Device Manager. In the Device Manager, click on the right arrow to the left of Human Interface Devices to expand the list. Right-click on the “HID-compli...
During my work I have came across one requirement to copy file from a Unix (Solaris) environment to Windows machine. You can use WINSCP Command line Utility or Putty (PSCP) Utility to do this. Using Putty C:\> “C:\Program Files (x86)\PuTTY\PSCP" -v -pw YourPassword> <unix_user>@<unix_machine>:< File Path> D:\<New Folder>\ Here YourPassword : password to connect to unix/solaris user. unix_user : Unix user id unix_machine : unix machine with proper domain File Path: Path of file or folder to copy New Folder: Destination Folder where file to be copied. Using WInSCP C:\>"C:\Program Files (x86)\WinSCP\WinSCP.com" /command "open sftp:// < unix_user > :<Password>@< unix_machine>" "cd <source file folder\file path>" "get <File> D:\<Destination_Folder>\" Here we are using winscp.com to use command line. Other parameters are self explanator...