How to uninstall a specific sideloaded app for mutiple users from windows 8.1 through windows power shell?

I have sideloaded a windows 8.1 app for mutiple
users in the device using the following command in windows power shell:-
DISM /Online /Add-ProvisionedAppxPackage /PackagePath:”packagepath” /SkipLicense
Now i want to un-install the same app for mutiple
users in windows 8.1 since i want to install latest package of that app but i am not able to un-install the app for mutiple
users in windows 8.1 using windows power shell
This is what i have tried :-
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName: "PackageFullName"
This what the error i am getting:-
Deployment Image Servicing and Management tool
Version: 6.3.9600.17031
Image Version: 6.3.9600.17031
Error: 2
The system cannot find the file specified.
The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
Am i missing anything ??
1)How to un-install a specific app for mutiple users in windows 8.1 using windows power shell??????
2)What are the variousways/Alternatives to un-install a specific app for mutiple users in windows 8.1 using windows power shell??????
Please let me know
Looking forward for your response
Thanks in advance

I am getting the same error, though I have verified the package name is correct. I am trying to uninstall the Reader App from a captured WIM (offline). Any suggestions?
dism /image:c\mount Get-ProvisionedAppxPackage Result:
DisplayName : Microsoft.Reader
Version : 2013.822.1823.785
Architecture : neutral
ResourceId : ~
PackageName : Microsoft.Reader_2013.822.1823.785_neutral_~_8wekyb3d8bbwe
Attempt to remove the app returns this same error message:
C:\WINDOWS\system32>dism /image:c:\mount /remove-provisionedappxpackage /Package
Name:Microsoft.Reader_2013.822.1823.785_neutral_~_8wekyb3d8bbwe
Deployment Image Servicing and Management tool
Version: 6.3.9600.17031
Image Version: 6.3.9600.17031
Error: 2
The system cannot find the file specified.
The DISM log file can be found at C:\WINDOWS\Logs\DISM\dism.log
The error is accompanied by the following entries in the error log:
2015-04-14 12:44:53, Error                 DISM   DISM Appx Provider: PID=9000 TID=8104 Failed to get staged packages for package 'Microsoft.Reader_2013.822.1823.785_neutral_~_8wekyb3d8bbwe'.
- CPackageAdapter::CreateForRemove(hr:0x80070002)
2015-04-14 12:44:53, Error                 DISM   DISM Appx Provider: PID=9000 TID=8104 Failed while initializing package adapter for package 'Microsoft.Reader_2013.822.1823.785_neutral_~_8wekyb3d8bbwe'
- CAppxManager::RemoveAllUserAppx(hr:0x80070002)
2015-04-14 12:44:53, Error                 DISM   DISM Appx Provider: PID=9000 TID=8104 Failed to remove package 'Microsoft.Reader_2013.822.1823.785_neutral_~_8wekyb3d8bbwe'
- CAppxManager::ProcessCommandRemoveAllUserAppx(hr:0x80070002)
2015-04-14 12:44:53, Error                 DISM   DISM Appx Provider: PID=9000 TID=8104 Failed processing command to remove Appx package - CAppxManager::ExecuteCmdLine(hr:0x80070002)

Similar Messages

  • How to let add external apps for simple users?

    How to let add external apps for simple users? Simple users don't have login server administer rights, so how can they add external apps for their use?

    ...Edit External applications portlet sais:
    Error: An unexpected error occurred: User-Defined Exception (WWC-43000)
    :(((

  • How do I get the bookmarks app for ipad to show my bookmarks in their entirety instead of cutting off the end?

    how do I get the bookmarks app for ipad to show my bookmarks in their entirety instead of cutting off the end?

    See also:
    *CheckPlaces: https://addons.mozilla.org/firefox/addon/checkplaces/
    *Bookmark Favicon Changer: https://addons.mozilla.org/firefox/addon/bookmark-favicon-changer/

  • Is there a way to find out how much I have spent on apps for the iPad?

    I need to find out how much I have spent on apps for taxes.  But in the app store on my iPad under the purchased tab, it lists all the apps but the prices are not available.  Any suggestions?

    Hi...
    If you can access your iTunes account on a computer you can sign in then view your Purchase History.
    And check your bank statements.

  • How to uninstall a build-in App?

    How to uninstall a build-in App?
    Solved!
    Go to Solution.

    If you change the Date +100years, you will be able to uninstall build-in App. (ok not all of them)
    Thanks.
    Attachments:
    GetAttachment.jpg ‏3 KB
    GetAttachment (1).jpg ‏4 KB
    GetAttachment (2).jpg ‏4 KB

  • How to use find my iPhone app for windows pc

    How to use find my iPhone app for windows pc ... Is it possible to do..
    Or what is the closest app to do that.,,,,,

    iPhone User Guide (For iOS 5.0 Software)
    iCloud: Find My iPhone
    iCloud: Find My iPhone overview
    iCloud: Set up Find My iPhone

  • How do I create accessible Mobile APP for IPAD using flash Builder 4.7?

    How do I create Accessible Mobile App for IPAD usign Flash Builder 4.7?
    I tried updating enabling accessbile = True and other configuratoin from this site: http://www.adobe.com/accessibility/products/flex/best-practices.html
    but NO LUCK. When I tested on IPAD it freezes my App.
    Thanks for your time and help,
    Nim Pat

    In the second example, the photo is set to background with a tile. The other parts are over top of the photo and done with layers with a background color setting.

  • How to design socket client-server app for 2-way communication

    Hi, I am writing a client-server application. I have a single server and many clients. Each client will need the ability to send information to the server at any time. The server will also need the ability to send information to a client at any time. Its this second part that I am not sure how to design. Would I need to create a SocketServer on each client to accept incoming messages, or is there a better way? Thanks

    scranchdaddy wrote:
    Don't my requirements sound a lot like an IM application, where a chat server might need to send a message to a chat client at any time?Not really. If that is what you are designing
    in my opinion one could easily be forgiven for thinking you were deliberately obfuscating your goal...
    How does the server know where the client is? Does it know the IP address of the client?I would imagine the server would contain a directory of IPs? I'm not sure.
    What happens if the client is not running?Then I guess the message would not get delivered.
    What happens if the client is behind a firewall that does not allow incoming connections?How do IM chat clients work? How have people solved this in the past?Typically the server would only care about clients currently connected to the server.
    Maybe you should re-think your design. I don't really have a design, just requirements, that's why I'm writing this post.Your subject says "+How to *design* socket client-server app for 2-way communication+".
    Are you saying you expect someone else to do the design for you?

  • I recently purchased an Apple TV box & the App for Apple TV from the Apple store. Now how do I get it to work? I am a card-carrying technological imbecile.

    I recently purchased an Apple TV box & the App for Apple TV from the Apple store. Now how do I get it to work? I am a card-carrying technological imbecile.

    If I'm understanding correctly, you have an Apple TV 2 (the small, black box version of the Apple TV), and downloaded the Remote App from the iTunes Store for your iPod Touch/iPhone/iPad, correct?  If so...
    For the AppleTV setup, hook it up to your television and, if applicable, your Surround Sound system.  To do this, you'll use an HDMI cable (not included, available here) to hook the AppleTV to your Television.  The cable only fits one way, and should slide effortlessly into place.  If, and only if, you intend to use your surround sound system with the AppleTV, you will also need what's called a TOSLINK Optical Cable (also not included, available here).  This cable goes from the AppleTV to a port labelled Optical In or Digital In on the back of your surround receiver (consult the manual that came with your surround sound system for additonal help).
    From here on, we'll focus on hooking up the AppleTV, then how to setup the Remote App from Apple on your iOS device.
    The AppleTV needs a network connection in order to function correctly.  A wired connection is recommended, but Wi-Fi is built-in to the AppleTV if a wired connection isn't available.  With the AppleTV plugged into your television, follow the on-screen instructions for setup.  To connect the AppleTV to your Wi-Fi network, you'll need to know the name of the network you want to connect to, as well as any password needed to connect to it.  When the AppleTV has a network connection, it'll load the latest selection of TV Shows, Movies and Music for display on the main menu - that's the easiest way to tell everything's working.
    For the Remote App, all you need to do is download the free application to a compatible iOS device (Any iOS device running iOS 3.1.2 or higher).  Once downloaded, go to the computer hosting your iTunes library, and turn on Home Sharing.  Finally, start the Remote App on your iOS device (be it iPhone, iPad, or iPod Touch), login with the same information you setup Home Sharing with, and away you go!  The Remote App is entirely optional, since the AppleTV can be controlled by the included remote control, but it's a nice touch nonetheless.
    I hope this answered your question, or at least helped put you on the path to success.  If you need something clarified, please don't hesitate to ask here.

  • Sideloading metro apps for all users

    I am having problems with my sideloaded metro app…… Doesn’t seem to work anymore on any of my machines.
    For the first few months, I originally installed my Metro app by first installing the app’s signed certificate to the local machine root store (All OK), then running the following command logged on as the actual user I wanted the app run
    under.
    Add-AppxPackage
    -Path "MyMetroApp.appx"
    -ForceApplicationShutdown
    While this method sort of worked, it had two problems:
    I needed to manually renew the developer licence every 30 days running
    Show-WindowsDeveloperLicenseRegistration
    and I had to do this logged on as the user on the actual console, couldn’t to this using remote PowerShell.
    I want to install the app properly for all users without needing to keep renewing the developer license. I have now run the following to install the app for all users:
    #Allow Trusted Apps
    New-Item
    -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx"
    New-ItemProperty
    -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx"
    -Name AllowAllTrustedApps
    -PropertyType DWord
    -Value 1
    #Install the app for all users
    Add-ProvisionedAppxPackage
    -Online -PackagePath
    "MyMetroApp.appx"
    -SkipLicense
    This method – even though it seemed to complete successfully, a couple of issues:
    there’s no shortcut added to the start screen on one of my machines, so I can’t open the app
    I am getting a message popup upon opening my app “The app can’t open: There's a problem with {app name}. Contact your system administrator about repairing or reinstalling it. [Close].” on another machine
    Can someone please point me in right direction to get my app working again? I don’t think it’s anything major, I think I’m on the right track.

    The main steps are detailed here:
    https://technet.microsoft.com/en-us/library/hh852635.aspx
    It sounds like the app needs to be un-provisioned on your troublesome machine ?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • How to block Specific G/L for an user

    Dear All my Expert,
    It is very much essential for me that I need to block the specific G/L for some users.
    It means those user only can made add/change the data but can not do the display the
    line item in FBL3n of selected G/L which I want to restrict for them.
    Can I do this? Please advice.
    With best regards
    Bishnu

    Hey Bishnu,
    Check the authorisation group through transaction code - SU24. You can provide the transaction code FS00 there to find out the respective authorisation object.
    Thanks & Regards
    Subhasish

  • Access to my Office 365 third-party app for external user : "a User account is not registered for the account"

    In my third-party web application of Office 365, I want to have access to the contacts, events and emails of all the users from the organizations who installed my app. The thing is I don't want that all these users have to grant me access, I just want one
    admin of the org to grant access for my app and then be able to retrieve the data I need for all the users.
    To test for one organization, I logged in as the admin and proceed to the Oauth2 authentication to retrieve the access token and in the first request (the GET one to retrieve an authorization code) i add the parameter
    prompt=admin_consent.
    With this access token, I can access the data (emails, contact, event) of the admin
    for instance for the contacts
    uri: https://outlook.office365.com/ews/odata/Users(adminemail)/Contacts
    but not the data of the other users of this org with this uri
    uri: https://outlook.office365.com/ews/odata/Users(useremail)/Contacts
    The only thing I can do is retrieve an access token for each user but it supposed that each user has to authorize the access to the app but it's very cumbersome. So, i don't see what enables the parameter prompt=admin_consent and how to use it. Does anybody
    know what it does?
    And my question is: how can I do to access the data of all the users of one organization when the access has been granted by one admin?
    Thank you!

        
    This was answered on StackOverflow by Dushyant Gill.  http://stackoverflow.com/questions/25316175/access-to-my-office-365-third-party-app-for-external-user-a-user-account-is-n/25316678#25316678
    You are sending the OAuth request to a tenant specific endpoint of Azure AD. Note the {key_provided} part of your Url - that part represents the tenantid or a registered domain name of an Azure AD tenant. Azure AD throws this error is the user signing in
    is not a user in that tenant.
    Multi-tenant applications like yours have two options:
    Perform home realm discovery yourself and send the SSO request to the correct tenant-specific endpoint of Azure AD: when a new Azure AD organization signs-up for your application, record its tenant ID, and registered domain names. On your login page, ask
    the user for their email and try to discover what Org they belong to using the suffix the email.
    Use the common endpoint of Azure AD. Instead of the {key_provided} part of the URL, use 'common'. In this case Azure AD will determine the user's tenant and sign-in the user. The token that your application will receive will still be from the user's tenant
    (iss claim).
    2 is more convenient for apps. However #1 has an advantage when the user's Organization has customized their sign-in page with the company logo etc - in the case of #1 the user will directly be taken to the customized and familiar sign-in page.
    I recommend a combination of the two: try determining the user's organization and sending them to the tenant specific SSO endpoint. If you're not able to - send them to the common endpoint.

  • How can I set up my Mac for two users to share photos, music etc

    How can I set up my Mac for two users to share photos, music etc?

    On the Mac with the libraries you want to share:
    iTunes Preferences click on the Sharing tab and put a tick in 'Share by library on local network'.
    iPhoto Preferences click on Sharing and put a tick against 'Share my photos'.
    When launching the same apps on other Macs on the network the libraries should be available, listed on the left.

  • How do I move an entire app to a dual monitor? Not just a window?

    How do I move an entire app to a dual monitor? Not just a window? I can drag single windows, but if I move a window to the second monitor and hit a button, like 'New', that opens a new window, then it opens the window in the first monitor. I want it to open in the second monitor instead.

    Right. Mail remembers as well. I have the menubar set on my larger display, and the main Mail window on the MBP display. When I create a new message, it displays the composition window on whichever display I used the last time for composition. So after the first time I moved the composition window to the larger display, it always opens on that display. I can't remember if it remembers that behavior after taking the MBP on the road, where I use only its display, and then reconnect the second display back at home.
    Mark

  • Any way to remove all "apps" for all users?`

    I get that the new start menu is a compromise, and it's neat that it's "back."
    What I'm not clear on, is if it's possible to remove/hide the "apps" for all users.
    I'm not keen on having all users have all of these, especially in a corporate environment.
    Would be preferable to have none, except for perhaps what's "allowed" by admins.
    Standard office users, power users, devs, artists, accountants, most folks at work simply don't have a use for most of these apps. I also don't want bandwidth constantly being used by any of the live tiles. If a user wants to know the weather, they can go to
    weather.com. If they want news, this is also available via any number of sites.
    The other compromise of having apps "windowed" is also nice, but for an office environment, I just don't see people firing up a sandboxed calculator app (or, any of the other built-in ones).
    Sorry, but honestly, I'd honestly just like to know if it's possible to set up a GPO, or use some other method to get the "apps" out of the way of the "standard office user."

    Hi techresource0,
    Use export-startlayout cmdlet to export the start menu configuration first:
    Export-StartLayout
    http://technet.microsoft.com/en-us/library/dn283401.aspx
    Windows 10 Technical Preview has a new policy under start menu  and taskbar:
    Meanwhile, I have two thoughts on this if you are planning your environment:
    One: a customized image.
    Two: customize default profile.
    For the first thought, you can uninstall all provisioned windows store app and then deploy this image to your environment. Of course, you can do this in an online system as well.
    Removing Windows 8.1 Built-in Applications
    http://blogs.technet.com/b/deploymentguys/archive/2013/10/21/removing-windows-8-1-built-in-applications.aspx
    For second thought, you may prepare default profile, it would always copy to new created user profile:
    Customize the default local user profile when preparing an image of Windows
    http://support.microsoft.com/kb/973289
    Alex Zhao
    TechNet Community Support

Maybe you are looking for

  • Getting tld file in servlet.

    hi all, now we cannot declare alias for tag lib tld in web.xml.so server will take tld from jar file which is there lib. i want access these tld file in servlet. can any body tell how to get it. thanks in advance...

  • When Importing a word doc the total length of the document is longer

    I have a simple 15 page word doc, Times New Roman, double spaced, that I imported into Pages. The problem is that the document increased in length to a full 16 pages! When I opened the document into text edit, and word on windows, the document is the

  • Unable to create invoices due in 2011

    Hello, I am unable to create invoices due in 2011. Hope do I open up the year 2011 for access. Thank You! Andrew

  • Issue with UPK

    Hi, I have installed UPK 12.1 with Oracle database in Server-client architecture. But when I tried to access the, http://hostname/ODSConent, getting below error.   HTTP Error 403.14 - Forbidden  Please help me to solve

  • OS 10.4.10 and Skype 2.6.0.151

    I know this is an iChat board, but does anyone know if OS 10.4.10 iMac has trouble with Skype 2.6.0.151? On my old system, 10.4.8 I was able to sign into my Skype account, but not now. Any ideas? Thanks Panther