-
alejr
AskWoody MVPBecause he can “see” the 2 DATA folders he’s referring to (i.e. they’re not hidden), I deliberately didn’t include the h option so the results he got would only show items that are visible.
I also set it up to look at the whole of drive C: because “This PC” actually points to the entire computer, including all it’s drives, partitions assigned drive letters and/or mapped network drives. I “assumed” the DATA folder would be on the primary Windows drive C: instead of a different drive.
BTW, not all SYMLINKDs and JUNCTIONs are hidden.
- i.e. among other folders, a user’s My Documents, My Music, My Pictures, My Videos and Start Menu are all Junctions that are not hidden.
The following command will show all the “unhidden” symlinkd/junction folders on drive C:
dir C:\*. /a /s | findstr /i "<SYMLINKD> <JUNCTION>"
-
alejr
AskWoody MVPOUCH!!
-
alejr
AskWoody MVPI get that same e-mail (or the UPS/DHL equivalent) at least once or twice a week but have never been tempted to click on anything simply because I didn’t have any packages pending delivery and I always track my packages using the shippers tracking site until they’re actually delivered.
BTW…
Instead of using the “Type clipboard text” option and having to wait for the text to get “typed” onto the screen, you can use the hot key combo Ctrl+V to instantly paste the clipboard contents to the screen.
Also, instead of using the arrow keys to “scroll” to the end of a long line of text, you can use the End key to immediately move the cursor to the “last” character of a line (the Home key immediately moves the cursor to the “first” character of a line.)
-
alejr
AskWoody MVPMost likely one of those is either a shortcut, a symlink (symbolic link) or a junction point (directory link) which are all “virtual“.
- i.e. they don’t actually contain anything or take up any storage space they just point to the real folder and will always reflect its contents.
Right clicking either and selecting properties would reveal if it’s a shortcut.
To find out if either is a symlink/junction, use the following command from an elevated cmd prompt.
dir C:\DATA. /a /s | findstr /i "<DIR> <SYMLINKD> <JUNCTION>"
This will display all folders on drive C: named “data” with a column showing whether it’s a directory (<DIR>), symlink (<SYMLINKD>) or junction (<JUNCTION>) and, if it’s a symlink or junction, a column showing the real folder it points to (i.e. DATA [C:\Documents])
If you want, you can delete a symlink or junction using the rd command but that won’t actually increase the amount of storage space on your drive as they don’t actually use any space (note, removing a symlink/junction does not remove the real folder it points to.)
BTW…
The main difference between a symlink and a junction is a symlink can point to a file or a folder while a junction can only point to a folder.
1 user thanked author for this post.
-
alejr
AskWoody MVPI occasionally get the same pop-up notification (I have a shared drive connected to my Linksys router) which fixes the problem when I click on it but, like you, sometimes I’m not there to click the notice.
If it’s disappeared, here are 2 ways to attempt to reconnect the drive.
- Click the ^ just to the left of the system icons on the lower right side of the taskbar to open the “hidden” taskbar items menu and then click the disconnected network drive icon (the one with the X)
- Open explorer, click on “My PC“, then click the disconnected drive (the one with the X).
Either of those does the same thing as clicking the original notice.
BTW, if neither works, then something more serious is causing your problem.
-
alejr
AskWoody MVPI disabled that task on my system back in May using the following powershell command (run as Admin.)
Schtasks /Change /Disable /Tn "Microsoft\Windows\Management\Provisioning\Logon"
I no longer get any tw-*.tmp folders and haven’t noticed any ill effects of the task being disabled.
1 user thanked author for this post.
-
alejr
AskWoody MVPSeptember 24, 2021 at 4:20 pm in reply to: New HP Laptop. Any Advantage To Keeping HP Included Software? #2391679Glad to hear it worked out!
-
alejr
AskWoody MVPHere’s how to create a image of your “active” Window partition.
Boot a Windows install Disc/USB
Press Shift + F10 at the first window to get a command prompt
Diskpart
List Vol (to determine the drive letter Windows is installed on)
- Note: normally it will not be the same drive letter you see when using Windows.
Exit Diskpart
DISM /Capture-Image /ImageFile:Drive you’re saving it to:\Your filename.wim /CaptureDir:The Win10 drive:\ /Name:whatever you want to call it /CheckIntegrity /Verify /EA
Note: the size of the final image will be “significantly” smaller than the actual amount of disk space used by Windows because DISM compresses it. (i.e. my 83.5GB Win10 installation created a 24.1GB wim file
-
alejr
AskWoody MVPSeptember 16, 2021 at 8:35 am in reply to: Mouse Pointer Trails setting doesn’t survive reboot #2390090Ok, here’s the problem:
The registry settings for the mouse are “normally” only read during startup so changing the MouseTrails value after the system has started doesn’t actually change the setting it’s already using (the change requires a restart to take effect which doesn’t work in your case.)
The reason the pointer trails immediately changes when you click the Display pointer trails checkbox is because windows “forces” the system to read & apply the new MouseTrails value.
Well, we can use a powershell script to do the same thing as follows:
Add-Type @" using System.Runtime.InteropServices; public class PInvoke { [DllImport("user32.dll")] public static extern int SystemParametersInfo(int uiAction, int uiParam, int[] pvParam, int fWinIni); [DllImport("user32.dll")] public static extern int SystemParametersInfo(int uiAction, int uiParam, System.IntPtr pvParam, int fWinIni); } "@ $mouse = Get-ItemProperty 'HKCU:\Control Panel\Mouse' # MouseTrails -> SPI_SETMOUSETRAILS [PInvoke]::SystemParametersInfo(0x005D, $mouse.MouseTrails, $null, 0)
Simple copy the above code and save it as a .ps1 file.
Since you already have a batch file that enters the value you want into the registry, here’s the extra code you need to add to it so it’ll run the above script.
@PowerShell -windowstyle hidden -noexit -NoProfile -ExecutionPolicy Bypass -File "YOURSCRIPT.ps1"
Note: the above code must be located after the code that changes the registry value in the batch file.
I tested this on my Windows 10 21H1 and it works just fine (files attached – you’ll need to modify the paths to match where you place them on your system.)
BTW, if you don’t want to see the Command prompt window that pops up for a short time when your batch file runs, simple create a shortcut to your batch file, set it to always run minimized, and run that at startup instead of the actual batch file.
1 user thanked author for this post.
-
alejr
AskWoody MVPSeptember 13, 2021 at 1:52 pm in reply to: Mouse Pointer Trails setting doesn’t survive reboot #2389543The registry entry for pointer trails is located at
HKEY_CURRENT_USER\Control Panel\Mouse
The MouseTrails string sets it as follows:
• a value of 0 disables trails
• a value of 2-7 sets the length of the trail from short to long
If the value keeps getting reset when you restart, you can create a batch file that runs on every restart to reset it to your preferred value (I use such a file myself to restore numerous registry values that always get reset during restarts.)
-
alejr
AskWoody MVPSeptember 13, 2021 at 12:40 pm in reply to: How to dispose of a laptop that can’t be recharged in order to wipe the drive #2389527*** WARNING ***
If you go with the hammer idea (or some other really destructive method), be sure to place it IN something that’ll contain all the pieces that’ll come flying off — especially shards from the “glass” display panel.
Also, even though they “seem” to be dead, beware of damaging the batteries as lithium batteries can catch fire and even explode if there’s any charge left in them at all.
Finally, since it’s e-waste, don’t just throw it in the trash, take it to a local e-waste disposal center.
5 users thanked author for this post.
-
alejr
AskWoody MVPSeptember 13, 2021 at 6:54 am in reply to: New HP Laptop. Any Advantage To Keeping HP Included Software? #2389437Black keyboard cover for HP 17-cp0124od
1 user thanked author for this post.
-
alejr
AskWoody MVPIt’s possible Windows Defender Antivirus was disabled via a value in the registry.
Open regedit and go to
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender
If the subkey DisableAntiSpyware exists with a value of 1, that disables Windows Defender Antivirus and, because it’s a Policies setting, would also explain why you’re getting the “settings are managed by your organization” message.
If it exists, changing the value to 0 or completely deleting the key “should” allow you to enable Defender Antivirus after removing AVG.
Note: you must restart Windows for the change to take effect.
-
alejr
AskWoody MVPSeptember 3, 2021 at 6:54 pm in reply to: Is there a life expectancy to Chrome on a Desktop computer #2387675Here’s how to import your Chrome settings to Edge (note, does not remove them from Chrome.)
- Open Edge and click the Favorites icon on the right.
- Open the “More options” menu (the 3 dots located between the Search and Pin icons)
- Select “Import favorites” in the drop-down menu.
- Select Google Chrome in the “Import from” drop-down.
- If you have more than one Profile, select the one you want import to.
- Select the specific items you want to import (warning, the default is everything checked.)
- Click the “Import” button at the bottom.
That’s it, everything you selected to import from Chrome will now be available in Edge.
BTW, if your particular Chromebook can install and run Android apps from Google Play, there’s now a Microsoft Edge for Android app available there.
-
alejr
AskWoody MVPThe actual program itself (Windows10Upgrade9252.exe) hasn’t changed since at least 2018 and you can reuse it as many times as you want.
If you’re already on the most current version of Win10, it’ll display Thank you for updating to the latest version of Windows 10.
If a newer version is available, it’ll display Update to the latest version of Windows 10 with an option to Update Now.
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
June 2023 Office non-Security updates have been released
by
PKCano
2 hours, 59 minutes ago -
Web Apps from Brave Browser
by
Gale
50 seconds ago -
Firefox 114 offering Secure DNS Options – does AT&T ISP Support?
by
Tex265
2 hours, 2 minutes ago -
macOS 14 Sonoma
by
Alex5723
44 minutes ago -
Just a fyi – I think I’ll skip on an Apple Vision Pro hardware section
by
Susan Bradley
5 hours, 44 minutes ago -
What’s wrong with Windows 11?
by
Ascaris
6 hours ago -
Streaming an iPad to a standard TV
by
MrJimPhelps
19 hours, 15 minutes ago -
clone to make backup laptop
by
greenbergman
1 day, 5 hours ago -
Problems with sound and USB ports
by
StavRoss
12 hours, 10 minutes ago -
Can you use WUShowHide on Windows 11 version 21H2?
by
southieguy
19 hours, 11 minutes ago -
Can we control the changes to our operating systems?
by
Susan Bradley
2 hours, 8 minutes ago -
Watch out for fake ‘Windows Defender’ scare
by
B. Livingston
6 hours, 40 minutes ago -
Diagnostics and testing? Get it all done in a flash.
by
Ben Myers
5 hours, 39 minutes ago -
Dip your toe into Visio Online
by
Peter Deegan
1 day, 5 hours ago -
Updating Win 10 Pro 21H2 to 22H2
by
bsqrd
1 day, 3 hours ago -
Changing mouse pointer options.
by
Artie
1 day, 6 hours ago -
Desktop or Laptop? What’s your choice?
by
Susan Bradley
5 hours, 44 minutes ago -
Anyone use Auslogics Bitreplica
by
WSjcgc50
2 days, 16 hours ago -
Unleashing the Gaming Revolution: CrossOver Mac’s DirectX 12 Support Update!
by
Alex5723
3 days, 5 hours ago -
Defender’s Offline Scan Fails to Run
by
E Pericoloso Sporgersi
2 days, 11 hours ago -
Mouse problem : cannot grab a window without maximizing it
by
Andy M
17 hours, 11 minutes ago -
End of support for Cortana in Windows
by
Alex5723
2 days, 4 hours ago -
Microsoft is really missing an advertising trick
by
Sky
3 days, 4 hours ago -
New MOVEit Transfer zero-day mass-exploited in data theft attacks
by
Alex5723
4 days, 4 hours ago -
Windows 11 Insider Preview build 25381 released to Canary
by
joep517
4 days, 4 hours ago -
Authenticating Email Address
by
IreneLinda
4 hours, 59 minutes ago -
Confusion about password protecting a folder in W10
by
Cthru
4 days, 7 hours ago -
I broke my right arm yesterday
by
Alex5723
2 days, 7 hours ago -
Kaspersky : iOS devices targeted with previously unknown malware
by
Alex5723
6 hours, 42 minutes ago -
Which Updates From Each List Are Safe to Install ?
by
TheFamilyIT
1 day, 20 hours ago
Recent blog posts
- June 2023 Office non-Security updates have been released
- Can we control the changes to our operating systems?
- Watch out for fake ‘Windows Defender’ scare
- Diagnostics and testing? Get it all done in a flash.
- Dip your toe into Visio Online
- Desktop or Laptop? What’s your choice?
- Beware of Google’s .ZIP domain and password-embedded URLs
- Longstanding feature requests, and their status
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2023 by AskWoody Tech LLC. All Rights Reserved.