自动排列图标reg设置

Windows 10 1703 Ent build - Auto arrange icon on desktop. (microsoft.com)

Hi, 

We can use GPP to deploy the registry key in your environment to make auto arrange work always:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Bags\1\Desktop

FFLAGS DWORD

1075839521 = Auto arrange icons = ON and Align icons to grid = OFF

or this value can also work for you: 

1075839525 = Auto arrange icons = ON and Align icons to grid = ON


Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.

powershell - Delete broken link - Stack Overflow

$folderPath = "C:\folderContaingBrokenSymlinks\";
$items = ls $folderPath -Recurse -ea 0;
foreach($item in $items){
    if($item.Attributes.ToString().contains("ReparsePoint")){
        cmd /c rmdir $item.PSPath.replace("Microsoft.PowerShell.Core\FileSystem::","");
    }
    else{
        rm -Force -Recurse $item;
    }
}

sum() over(partition by)函数1_bingbangx的博客-CSDN博客

sum(...) over( ),对所有行求和

sum(...) over( order by ... ),和 =  第一行 到 与当前行同序号行的最后一行的所有值求和,

posted @ 2022-10-21 19:55  CharyGao  阅读(89)  评论(0)    收藏  举报