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:\>
त्रुटि इस तथ्य से संबंधित है कि rm -force जहां भी लिंक इंगित कर रहा है, उसके अंदर वस्तुओं को हटाने का प्रयास करता है। मैं कमांड लाइन का उपयोग करके इस चीज को कैसे हटा सकता हूं? मैं पॉवरशेल / शेल बग कहां रिपोर्ट कर सकता हूं? ऐसा लगता है कि पावरशेल एमएस कनेक्ट पर नहीं है।