Ab aap E:\Pictures\VRcoing\arfi folder me ho. Yahan se ye commands step by step type karein:
---
Step 1: Folder ke saare items dikhao (hidden bhi)
Type karo:
```powershell
Get-ChildItem -Force
```
Press Enter
Isse arfi folder ke saare items dikh jayenge (hidden files bhi).
---
Step 2: Agar kuch dikhta hai to file details dekho
Type karo:
```powershell
Get-ChildItem -Force | Select-Object Name, Length, Attributes
```
Press Enter
---
Step 3: Poori pen drive me .eslock file dhundho
Type karo:
```powershell
Get-ChildItem -Path E:\ -Recurse -Force -Filter "*.eslock"
```
Press Enter
---
Step 4: Agar file milti hai to uska full path dekho
Type karo:
```powershell
Get-ChildItem -Path E:\ -Recurse -Force -Filter "*.eslock" | Select-Object FullName
```
Press Enter
---
Step 5: Agar file milti hai to copy karo
Type karo:
```powershell
Copy-Item -Path "E:\Pictures\VRcoing\arfi\*.eslock" -Destination "C:\Recovered\" -Force
```
Pehle ye folder banao:
```powershell
New-Item -ItemType Directory -Path "C:\Recovered"
```
---
Step 6: Agar bilkul kuch nahi dikhta to parent folder check karo
Type karo:
```powershell
Get-ChildItem -Path E:\Pictures\VRcoing -Force
```
Press Enter
---
Summary — Abhi ye type karo sabse pehle:
```powershell
Get-ChildItem -Force
```
Phir Enter press karo.
Output batao — kuch dikhta hai ya bilkul empty?
Recent Comments (0)
