Recent content by GeneralLee01


  1. Been looking for 2 PassKeys for over a year

    Hi neemo No pas keys listed.
  2. Been looking for 2 PassKeys for over a year

    Thanks Ant. Yes I did, no pass keys to be found. Only pass words.
  3. Been looking for 2 PassKeys for over a year

    Hi all, When I try to log-in to Gmail, using Win11 Edge, I see this ............ . . . I assume this means Win11 has somewhere stored 2 passkeys. Now where do I find these and how can I delete them ? Thanks
  4. Get rid of OneDrive bar in Office

    Thank you very much Gary. But running a script every day is too much trouble for me.
  5. Get rid of OneDrive bar in Office

    Good morning all, I would like to get rid of this OneDrive bar that pops up whenever I open an Office document. Please advice Thanks
  6. How to delete a Sunrise ?

    Hi Edwin I want to delete it because I want it removed.
  7. How to delete a Sunrise ?

    Hi all, How do I delete file . . . . "C:\Windows\Web\Wallpaper\Sunrise\img31.jpg" aka "C:\Windows\Web\Wallpaper\ThemeC\img31.jpg" I tried the obvious "right click file" way and also going to the DOS prompt as an admin and using DEL. But no success. "File Access Denied" and "Access is...
  8. Share your favorite handy BAT file

    So it basically orders pizza from a Russian website ?
  9. Share your favorite handy BAT file

    Renames all files in current directory to a "random" name. Be very careful using this ! ----------------------- _RandomNames.bat ----------------------- @ECHO OFF ECHO Random Names ECHO Written By: Jason Faulkner ECHO. ECHO. REM Randomly renames every file in a directory. SETLOCAL...
  10. Share your favorite handy BAT file

    Ipconfig /displaydns is a command that shows the DNS resolver cache of your system. The cache keeps track of IP addresses and website names you have already visited. -------------------------- Ipconfig displaydns.bat -------------------------- Ipconfig /displaydns @Echo . @Echo . @Echo . @echo...
  11. Share your favorite handy BAT file

    Sfc /scannow is a command of System File Checker, a utility built in the Windows operating systems. System File Checker scans critical system files and verify their versions. If this utility finds any files that has the wrong versions, it replaces them with the correct, verified ones...
  12. Share your favorite handy BAT file

    Winget is a command-line tool for Windows that lets users manage software packages easily. winget combined with the specific subcommand upgrade updates apps to their latest versions, ------------------------- winget update ALL.bat ------------------------- @ECHO OFF :choice Echo . Echo . winget...
  13. Share your favorite handy BAT file

    Winget is a command-line tool for Windows that lets users manage software packages easily. winget combined with the specific subcommand upgrade updates apps to their latest versions, This one just checks for updates and does not install anything. -------------------- winget update.bat...
  14. Share your favorite handy BAT file

    Flushing the DNS resolver cache can help resolve DNS-related problems in Microsoft Windows 11 and previous versions. ----------------------- Ipconfig flushdns.bat ----------------------- Ipconfig /flushdns @Echo . @Echo . @Echo . @echo off pause
  15. Share your favorite handy BAT file

    Over the years I have stolen / copied / downloaded /tweaked / written several very handy but very simple BAT files. Here are my favotites . . . . . . . what are yours ? Please share
Back
Top Bottom