-2

I have a problem with "Command Prompt" :

enter image description here

How to solve this problem ?

Gohyu
  • 468
  • 2
  • 10
  • 32
  • 3
    what do you want to do with program files?? – Keshav May 17 '16 at 06:46
  • 1
    `cd Program Files` – Idos May 17 '16 at 06:47
  • I want to access C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN>stsadm -o uninstallfeature -name UserInterfaceWayBillActions -force – Gohyu May 17 '16 at 06:47
  • 1
    first navigate to that directory through command : cd s C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN and then execute your command. – Keshav May 17 '16 at 06:48

2 Answers2

2
    You have to follow two steps for this :

    1.navigate to that directory through command :
 cd C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN

    2. Then execute your command. 

     stsadm -o uninstallfeature -name UserInterfaceWayBillActions -force 
Keshav
  • 821
  • 2
  • 12
  • 33
1

type in

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN\stsadm -o uninstallfeature -name UserInterfaceWayBillActions -force

and hit enter

Ash
  • 5,786
  • 5
  • 22
  • 42