Recent content by Jakov93

  1. J

    Mouse speed always restores to a certain speed after restart or shutdown until click DPI twice

    Thanks for the reply, Dear, I have been reinstalled the mouse driver, but not fixed also, the problem is only with this mouse, I don't know the mouse model and manufacturer, I think it's Chinese also, it's a super gaming mouse
  2. J

    Mouse speed always restores to a certain speed after restart or shutdown until click DPI twice

    Hi, My mouse speed is slow, I changed its speed to maximum, and it's ok for me but the problem is when restarting or shutdown, its speed becomes slow although its speed in the mouse setting is maximum so there is no way to change its speed, but when I double click on the DPI button on the mouse...
  3. J

    Move all subfolders from parent folder to a new unique created folder in the target location

    Hi I made this batch code, to move all subfolders from "C:\1" to a new created folder inside folder "C:\2" @echo off set "sourceDir=C:\1" set "destinationDir=C:\2" set "newFolderName=NewSubfolder" mkdir "%destinationDir%\%newFolderName%" 2nul for /D %%I in ("%sourceDir%\*") do (...
Back
Top