PS C:\> cmd /c mklink /d testlink non-existent-dir
symbolic link created for testlink <<===>> non-existent-dir
PS C:\> rm .\testlink
Remove-Item : C:\testlink is a NTFS junction point. Use the Force parameter to delete or modify.
At line:1 char:3
+ rm <<<< .\testlink
+ CategoryInfo : WriteError: (C:\testlink:DirectoryInfo) [Remove-Item], IOException
+ FullyQualifiedErrorId : DirectoryNotEmpty,Microsoft.PowerShell.Commands.RemoveItemCommand
PS C:\> rm -force .\testlink
Remove-Item : Could not find a part of the path 'C:\testlink'.
At line:1 char:3
+ rm <<<< -force .\testlink
+ CategoryInfo : WriteError: (C:\testlink:String) [Remove-Item], DirectoryNotFoundException
+ FullyQualifiedErrorId : RemoveItemIOError,Microsoft.PowerShell.Commands.RemoveItemCommand
PS C:\>
ত্রুটিটি এই সত্যের সাথে সম্পর্কিত যে লিঙ্কটি নির্দেশ করছে যেখানেই আরএম-ফোর্স ভিতরে আইটেমগুলি সরিয়ে ফেলার চেষ্টা করে। কমান্ড লাইন ব্যবহার করে আমি কীভাবে এই জিনিসটি সরিয়ে ফেলতে পারি? আমি কোথায় পাওয়ারশেল / শেল বাগগুলি রিপোর্ট করতে পারি? মনে হচ্ছে পাওয়ারশেলটি এমএস সংযোগে নেই।