How To Uninstall Microsoft Store and the Apps — LazyAdmin (2023)

Every new Windows 10 computer comes with Microsoft Store and pre-installed apps. Most people don’t want the pre-installed apps, so how can you uninstall Microsoft Store Apps? And how can you uninstall Microsoft itself?

In this article, I will explain how you can uninstall a single app, all the Microsoft Store apps, and Microsoft Store itself.

We are going to look at two methods, manually or with PowerShell. At the end of the article, I have a complete PowerShell script that uninstalls everything for you.

Uninstall Microsoft Store Apps

Removing Microsoft Store Apps that are pre-installed is quite simple. The easiest option to remove an app is to click on it with your right mouse button and choose Uninstall. You will get a small notification that the app will be removed after which the app is uninstalled.

How To Uninstall Microsoft Store and the Apps — LazyAdmin (1)

Depening on your computer brand there can be quite a lot of apps that you may want to remove. Another option to remove the Microsoft apps is from the settings screens.

  1. Open the start menu
  2. Click on the Gear icon on the left side
  3. Select Apps
  4. Find the apps that you want to remove in the list
  5. Click on Uninstall

But this is still a manual task, which is fine if you only want to remove the app from a single computer. When you need to remove Microsoft Store Apps from multiple computers, you want to use PowerShell for this.

How To Uninstall Microsoft Store Apps with PowerShell

With PowerShell, we can list and remove all the store apps. The challenge is finding the correct name of the app. There are a couple of ways to find the correct name of the app. First, open Windows PowerShell. You can open the normal PowerShell to remove apps under your account only, if you want to remove it for all users, you will need to open PowerShell in admin mode

  • Press Windows key + X
  • Choose Windows PowerShell or Windows PowerShell (admin)

We can list all the installed apps with the following cmd:

Get-AppxPackage | ft

You will see an overview of all the apps, listed by name. We can also search for a specific apps, based on a part of the name:

Get-AppxPackage | Where-Object Name -like "*ZuneMusic*" | Select Name

Note the astrics ( * ) symbol that is used as wildcards. This way you can search on a part of the name.

How To Uninstall Microsoft Store and the Apps — LazyAdmin (2)

If the results contain only one app, and it’s the one that you want to remove, then you can replace the Select with the following to the cmdlet:

 | Remove-AppxPackage# Complete cmd:Get-AppxPackage | Where-Object Name -like "*ZuneMusic*" | Remove-AppxPackage

Or to remove a Microsoft Store App based on it exact name:

Get-AppxPackage -Name "Microsoft.todos" | Remove-AppxPackage

To remove the Microsoft Store App for all users with PowerShell you can use the following cmdlet:

Get-AppxPackage -Name "Microsoft.todos" -AllUsers | Remove-AppxPackage -AllUsers

Prevent apps from being installed on new users

With the scripts above we can remove the apps for existing users. But when a new user logs in, the app will be installed for that particular user. You probably want to prevent that as well.

To do this we can remove the app from the Windows Image. This way it won’t be installed when a new user logs in onto the computer.

  1. Press Windows Key + X
  2. Choose Windows PowerShell (admin)
  3. Enter the following PowerShell command
Get-AppXProvisionedPackage -Online | where DisplayName -EQ "Microsoft.todos" | Remove-AppxProvisionedPackage -Online $appPath="$Env:LOCALAPPDATA\Packages\$app*"Remove-Item $appPath -Recurse -Force -ErrorAction 0

How To Uninstall Microsoft Store

On some occasions, you may want to uninstall the Microsoft store completely. Now you probably already tried to remove the store through the settings (configuration) screen or by right-clicking in the start menu.

But that isn’t possible. The only way to remove Microsoft Store is with PowerShell. This way you can remove it for a single user or for all users.

How To Uninstall Microsoft Store and the Apps — LazyAdmin (3)

Step 1 – Open PowerShell

  • Press Windows Key + X (or right-click on the start menu)
  • Choose Windows PowerShell (open in Admin mode to remove it for all users)

Step 2 – Uninstall Microsoft Store

Use the following command to remove Microsoft Store from your computer:

Get-AppxPackage -Name "Microsoft.WindowsStore" | Remove-AppxPackage

You can also remove it for all users, to do this you will need to make sure that you started PowerShell in Admin mode. Otherwise, you will get an Access Denied error.

Get-AppxPackage -Name "Microsoft.WindowsStore" -AllUsers | Remove-AppxPackage

Remove it for new Users

Microsoft Store will be reinstalled for each new user that logs on. You don’t want to remove it for each new user probably, so what we can do is remove it from the local Windows Image. This way it won’t be reinstalled.

We first look up the package in the Windows Image based on the name of the app and remove it from the image.

Next we also make sure that any localappdata is removed.

Get-AppXProvisionedPackage -Online | where DisplayName -EQ "Microsoft.WindowsStore" | Remove-AppxProvisionedPackage -Online $appPath="$Env:LOCALAPPDATA\Packages\$app*"Remove-Item $appPath -Recurse -Force -ErrorAction 0

Reinstall Microsoft Store

If you need to re-install Microsoft Store you can’t simply download an installation file. The only way to install it again is by using PowerShell. You will need to start PowerShell in Admin mode to reinstall Microsoft Store.

This can be done with a single command and is easy to do:

  1. Press Windows key + X (or right-click on the start menu)
  2. Choose Windows PowerShell (admin)
  3. Enter the command below to reinstall Microsoft Store:
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Complete Script to remove Microsoft Store and the Apps

There are a lot of apps that can be installed by default on your computer. Alex Hirsch created a complete PowerShell script that will remove all default Microsoft and Non-Microsoft apps from your computer.

I have made a couple of small modifications to the script, so it will check if the app is installed before trying to remove it. And also cleanup the local app data.

To run the scrip you might need to enable running scripts first. You do this by entering the following command in PowerShell:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

The complete script:

#requires -version 4<#.SYNOPSIS .DESCRIPTION Removes pre-installed apps from Windows 10 Based on https://github.com/W4RH4WK/Debloat-Windows-10/blob/master/scripts/remove-default-apps.ps1 Do the same for the new plan.NOTES Version: 1.0 Author: Alex Hirsch - http://w4rh4wk.github.io/ Rudy Mens - https://LazyAdmin.nl Creation Date: 4 aug 2015 Purpose/Change: Check if app exists on version Remove local app storage#>Write-Output "Uninstalling default apps"$apps = @( # default Windows 10 apps "Microsoft.549981C3F5F10" #Cortana "Microsoft.3DBuilder" "Microsoft.Appconnector" "Microsoft.BingFinance" "Microsoft.BingNews" "Microsoft.BingSports" "Microsoft.BingTranslator" "Microsoft.BingWeather" #"Microsoft.FreshPaint" "Microsoft.GamingServices" "Microsoft.Microsoft3DViewer" "Microsoft.MicrosoftOfficeHub" "Microsoft.MicrosoftPowerBIForWindows" "Microsoft.MicrosoftSolitaireCollection" #"Microsoft.MicrosoftStickyNotes" "Microsoft.MinecraftUWP" "Microsoft.NetworkSpeedTest" "Microsoft.Office.OneNote" "Microsoft.People" "Microsoft.Print3D" "Microsoft.SkypeApp" "Microsoft.Wallet" #"Microsoft.Windows.Photos" "Microsoft.WindowsAlarms" #"Microsoft.WindowsCalculator" "Microsoft.WindowsCamera" "microsoft.windowscommunicationsapps" "Microsoft.WindowsMaps" "Microsoft.WindowsPhone" "Microsoft.WindowsSoundRecorder" #"Microsoft.WindowsStore" "Microsoft.Xbox.TCUI" "Microsoft.XboxApp" "Microsoft.XboxGameOverlay" "Microsoft.XboxGamingOverlay" "Microsoft.XboxSpeechToTextOverlay" "Microsoft.YourPhone" "Microsoft.ZuneMusic" "Microsoft.ZuneVideo" # Threshold 2 apps "Microsoft.CommsPhone" "Microsoft.ConnectivityStore" "Microsoft.GetHelp" "Microsoft.Getstarted" "Microsoft.Messaging" "Microsoft.Office.Sway" "Microsoft.OneConnect" "Microsoft.WindowsFeedbackHub" # Creators Update apps "Microsoft.Microsoft3DViewer" #"Microsoft.MSPaint" #Redstone apps "Microsoft.BingFoodAndDrink" "Microsoft.BingHealthAndFitness" "Microsoft.BingTravel" "Microsoft.WindowsReadingList" # Redstone 5 apps "Microsoft.MixedReality.Portal" "Microsoft.ScreenSketch" "Microsoft.XboxGamingOverlay" "Microsoft.YourPhone" # non-Microsoft "2FE3CB00.PicsArt-PhotoStudio" "46928bounde.EclipseManager" "4DF9E0F8.Netflix" "613EBCEA.PolarrPhotoEditorAcademicEdition" "6Wunderkinder.Wunderlist" "7EE7776C.LinkedInforWindows" "89006A2E.AutodeskSketchBook" "9E2F88E3.Twitter" "A278AB0D.DisneyMagicKingdoms" "A278AB0D.MarchofEmpires" "ActiproSoftwareLLC.562882FEEB491" # next one is for the Code Writer from Actipro Software LLC "CAF9E577.Plex" "ClearChannelRadioDigital.iHeartRadio" "D52A8D61.FarmVille2CountryEscape" "D5EA27B7.Duolingo-LearnLanguagesforFree" "DB6EA5DB.CyberLinkMediaSuiteEssentials" "DolbyLaboratories.DolbyAccess" "DolbyLaboratories.DolbyAccess" "Drawboard.DrawboardPDF" "Facebook.Facebook" "Fitbit.FitbitCoach" "Flipboard.Flipboard" "GAMELOFTSA.Asphalt8Airborne" "KeeperSecurityInc.Keeper" "NORDCURRENT.COOKINGFEVER" "PandoraMediaInc.29680B314EFC2" "Playtika.CaesarsSlotsFreeCasino" "ShazamEntertainmentLtd.Shazam" "SlingTVLLC.SlingTV" "SpotifyAB.SpotifyMusic" #"TheNewYorkTimes.NYTCrossword" "ThumbmunkeysLtd.PhototasticCollage" "TuneIn.TuneInRadio" "WinZipComputing.WinZipUniversal" "XINGAG.XING" "flaregamesGmbH.RoyalRevolt2" "king.com.*" "king.com.BubbleWitch3Saga" "king.com.CandyCrushSaga" "king.com.CandyCrushSodaSaga" # apps which other apps depend on "Microsoft.Advertising.Xaml")foreach ($app in $apps) { Write-Output "Trying to remove $app" # Get the app version $appVersion = (Get-AppxPackage -Name $app).Version If ($appVersion){ # If the apps is found, remove it Get-AppxPackage -Name $app -AllUsers | Remove-AppxPackage -AllUsers } # Remove the app from the local Windows Image to prevent re-install on new user accounts Get-AppXProvisionedPackage -Online | Where-Object DisplayName -EQ $app | Remove-AppxProvisionedPackage -Online # Cleanup Local App Data $appPath="$Env:LOCALAPPDATA\Packages\$app*" Remove-Item $appPath -Recurse -Force -ErrorAction 0}

Wrapping Up

Default apps, also know as Bloatware, are annoying. They polute your start menu even though you never use them. With these script you can easily uninstall all the Microsoft Store Apps.

Reinstalling Microsoft Store or one of the apps is always possible. You can read more about that in this article.

If you have any questions just drop a comment below

FAQs

Why can't I uninstall MS store? ›

Uninstalling the Microsoft Store app is not supported, and uninstalling it may cause unintended consequences. There is no supported workaround to uninstall or reinstall Microsoft Store.

How do I uninstall an app and games from the Microsoft Store? ›

Uninstall from your device

Sign in to your Microsoft account on your Windows 10/11 device. Select the Search icon on the taskbar, type settings, and then select Settings. Select Apps > Apps & features. On Windows 10, Choose the game you want to uninstall from the list and then select Uninstall two times.

How do I uninstall appx packages? ›

Right click on the start button, then select Windows Terminal.
  1. Type the following command to view a list of all installed apps. Get-AppxPackage | Select Name, PackageFullName.
  2. To remove the app, you need to add Remove-AppxPackage to the Get-AppxPackage command. ...
  3. Just replace NAME with the name of the package in the list.
14 Dec 2021

How do I uninstall Microsoft Store? ›

On the Start menu or in the All apps list, browse to the app. Select and hold until the menu appears, then select Uninstall.

Can you disable Microsoft Store? ›

Click on Start > Settings > Privacy. Scroll down on the left and click on Background apps. Toggle Microsoft Store off.

How do I Uninstall Microsoft Apps? ›

Select Start > Settings > Apps > Apps & features . Find the app you want to remove, select More > Uninstall.

How do I remove the Microsoft Store from Windows 11? ›

Here is how to uninstall Microsoft Store in Windows 11:
  1. Type PowerShell in the Start Menu and click on Run as Administrator:
  2. On the Windows PowerShell, input the following command: Get-AppxPackage *windowsstore* | Remove-AppxPackage.
  3. Press Enter to confirm.

How do you Uninstall? ›

How To Uninstall An App On Android - YouTube

How do I Uninstall built in apps in Windows 10? ›

So, if you want to uninstall all the built-in apps from all the other user accounts, login in separately to each other account and give the command: "Get-AppXPackage | Remove-AppxPackage".

How do I Uninstall Windows packages? ›

Find the full name of the desired component from this list and enter Get-AppxPackage APPLICATION_NAME | Remove-AppxPackage –package (the application name must be taken from the PackageFullName list) to remove it. This method will remove even the program that is not deleted by standard means.

How do I delete all appx packages in Windows 10? ›

How can I delete Windows 10 apps for all users?
  1. This is an example of a package full name: Microsoft. ...
  2. In order to only remove an app from a single user account, you would type the following command, and then press Enter : Get-AppxPackage PackageFullName | Remove-AppxPackage.
8 Sept 2022

Why can't I uninstall an app? ›

Some apps are granted Android administrator access. These will prevent you from uninstalling them unless you revoke their administrator privilege. Sometimes, malware can also use administrator privilege to wreak havoc on your phone.

How do I uninstall an app? ›

Delete apps that you installed
  1. Open the Google Play Store app .
  2. At the top right, tap the Profile icon.
  3. Tap Manage apps & devices. Manage.
  4. Tap the name of the app you want to delete.
  5. Tap Uninstall.

How do I delete an app that won't uninstall? ›

HOW TO: Remove Android Apps That Won't Uninstall - YouTube

How do I block Microsoft Store access? ›

To block Microsoft Store using AppLocker
  1. Type secpol in the search bar to find and start AppLocker.
  2. In the console tree of the snap-in, click Application Control Policies, click AppLocker, and then click Packaged app Rules.
  3. On the Action menu, or by right-clicking on Packaged app Rules, click Create New Rule.
11 Aug 2022

How do I unblock the Microsoft Store on my school computer? ›

How to fix the Microsoft Store if it's blocked?
  1. Open the Windows Store Apps troubleshooter. ...
  2. Clear Microsoft Store's cache. ...
  3. Enable Microsoft Store from the Group Policy Editor. ...
  4. Reset the Microsoft Store app. ...
  5. Try using a different user account. ...
  6. Check for Windows 10 updates. ...
  7. Turn off third-party antivirus software.
4 Dec 2021

How do I remove Microsoft Store from Windows 10 home? ›

How To Disable the Windows Store on Windows 10 2020 - YouTube

Why Windows Store is not working? ›

If you're having trouble launching Microsoft Store, here are some things to try: Check for connection problems and make sure that you're signed in with a Microsoft account. Make sure Windows has the latest update: Select Start , then select Settings > Update & Security > Windows Update > Check for Updates.

How do I Uninstall a program using command prompt? ›

In the Command prompt, type in 'wmic,' and hit Enter. Type in 'product get name' in the cmd and hit Enter. This will pull up the product list on your PC. Make sure you replace "name-of-the-program" with an actual program you'd like to remove, and the app will be removed easily.

Where are Microsoft Store apps installed? ›

Viewing the location of programs and apps downloaded from the Microsoft Store. Programs and apps downloaded from the Microsoft Store are installed in the following path by default: C:/Program Files/WindowsApps (Hidden items). To check hidden items, open This PC, click View and select Hidden items.

How do I turn off Microsoft? ›

To turn off your PC in Windows 10, select the Start button, select the Power button, and then select Shut down.

How do I delete a Google? ›

Step 3: Delete your account
  1. Go to the Data & Privacy section of your Google Account.
  2. Scroll to "Your data & privacy options."
  3. Select More options. Delete your Google Account.
  4. Follow the instructions to delete your account.

How do I uninstall Google? ›

Chrome is already installed on most Android devices, and can't be removed.
...
You can turn it off so that it won't show on the list of apps on your device.
  1. Open your device's Settings app .
  2. Tap Apps & notifications.
  3. Tap Chrome. . If you don't see it, first tap See all apps or App info.
  4. Tap Disable.

Why can't I uninstall an app on Windows 10? ›

If you are unable to uninstall program Windows 10, it might because the uninstall process is interfered by third-party processes. The solution is to boot your Windows 10 computer into Safe Mode, and then remove the program in Safe Mode.

Can you delete factory installed apps? ›

Tap My Apps & Games and then Installed. This will open a menu of apps installed in your phone. Tap the app you want to remove and it will take you to that app's page on the Google Play Store. Tap Uninstall.

How do I do a factory reset with Windows 10? ›

Reset Windows 10

In Windows 10, click the Start menu and select the gear icon in the lower left to open up the Settings window. You can also select the Settings app from the app list. Under Settings, click Update & Security > Recovery, then select Get started under Reset this PC.

How do I make my Windows 10 run faster? ›

Here are fifteen ways to speed up Windows 10 and Windows 11, most of which you can do without leaving your desk.
  1. Install a solid state drive. ...
  2. Disable apps that run at startup. ...
  3. Uninstall bloatware and other useless programs. ...
  4. Close apps that you're not using. ...
  5. Disable Windows' special effects. ...
  6. Turn off window transparency.
1 Apr 2022

How do I uninstall Microsoft store PowerShell? ›

To remove or uninstall Microsoft Store from your computer, try the below steps.
  1. Run the PowerShell as administrator.
  2. Copy and paste the following command into the PowerShell prompt and hit Enter – Get-appxpackage windowsstore | remove-appxPackage.
  3. The Microsoft store is now uninstalled for the current user.
14 Jul 2021

How do I uninstall a program using PowerShell script? ›

$MyProgram.uninstall()

This command will uninstall your program. You can also replace the variable $MyProgram with the actual program name. This process is the easiest way to uninstall a program using PowerShell. That said, some hidden programs may exist and they won't get listed with the Get-WmiObject command.

How do I reinstall all Microsoft apps? ›

Reinstall your apps: In Microsoft Store, select See more > My Library. Select the app you want to reinstall, and then select Install.

What pre installed Apps should I Uninstall Windows 10? ›

Now, let's look at what apps you should uninstall from Windows—remove any of the below if they're on your system!
  • QuickTime. rmstock. ...
  • CCleaner. ...
  • Crappy PC Cleaners. ...
  • uTorrent. ...
  • Adobe Flash Player and Shockwave Player. ...
  • Java. ...
  • Microsoft Silverlight. ...
  • All Toolbars and Junk Browser Extensions.

How do I Uninstall a program using PowerShell Windows 10? ›

How to uninstall your programs using PowerShell
  1. You can uninstall the in-built apps using the Get-AppxPackage *programName* | Remove-AppxPackage command.
  2. Second method to uninstall your apps is through the $MyApp. Uninstall() command.
20 May 2022

How do you Uninstall Programs on Windows 10 that Cannot be uninstalled? ›

Follow these steps:
  1. Press and hold the Windows key on your keyboard then press “R”, this should open Run.
  2. Now type “appwiz. ...
  3. This should open the old Windows uninstalling utility.
  4. Now simply find the program you are trying to uninstall, right-click on it, and then click “Uninstall”.

How do I Uninstall a game on my PC? ›

Deleting via Windows Settings
  1. Open the Windows Start Bar.
  2. Choose Settings.
  3. Choose Apps.
  4. Choose Apps & Features.
  5. Select the game you want uninstalled and click on it.
  6. Choose Uninstall.
5 Jun 2020

How do I Uninstall Microsoft games on Windows 7? ›

Resolution
  1. To uninstall an application, use the uninstall program provided by Windows 7. ...
  2. In the right pane, click on Control Panel.
  3. Under Programs click on the item Uninstall a program.
  4. Windows then lists all programs that were installed using Windows Installer. ...
  5. Click at the top on Uninstall/Change.

How do I remove Spotify from Microsoft Store? ›

If you downloaded Spotify from the Microsoft Store, you won't be able to use it. Step 1: Type “Control Panel” in Cortana's search bar. Step 2: Once the window pops up, select “Uninstall a program” under “Programs”. Step 3: Scroll down and find Spotify, then click “Uninstall”.

How do you uninstall apps that Cannot be uninstalled? ›

How to Uninstall Apps on Android that Won't Uninstall - YouTube

Why can't I uninstall apps? ›

Some apps are granted Android administrator access. These will prevent you from uninstalling them unless you revoke their administrator privilege. Sometimes, malware can also use administrator privilege to wreak havoc on your phone.

How do I uninstall a program using command prompt? ›

In the Command prompt, type in 'wmic,' and hit Enter. Type in 'product get name' in the cmd and hit Enter. This will pull up the product list on your PC. Make sure you replace "name-of-the-program" with an actual program you'd like to remove, and the app will be removed easily.

How do I remove Microsoft start? ›

Go to Start, Settings, Apps, Apps and Features and scroll down to the Microsoft Start App. Click on the App, select Uninstall and uninstall the App. Restart and it should be gone.

How do I Uninstall an app? ›

Important: You're using an older Android version. Some of these steps work only on Android 13 and up. Learn how to check your Android version.
...
Delete apps that you installed
  1. Open the Google Play Store app .
  2. At the top right, tap the Profile icon.
  3. Tap Manage apps & devices. ...
  4. Tap the name of the app you want to delete.

How do I Uninstall a game without uninstaller? ›

Remove a Program That Lacks an Uninstaller
  1. 1) Create a system restore point. See How to Create a Restore Point if you need instructions.
  2. 2) Boot into Safe Mode. Reboot your PC. ...
  3. 3) Find the path to the program folder. ...
  4. 4) Delete the program folder. ...
  5. 5) Clean the Registry. ...
  6. 6) Delete the shortcuts. ...
  7. 7) Reboot.
28 May 2012

How do I Uninstall Google Chrome? ›

Chrome is already installed on most Android devices, and can't be removed.
...
Disable Chrome
  1. Open your device's Settings app .
  2. Tap Apps & notifications.
  3. Tap Chrome. . If you don't see it, first tap See all apps or App info.
  4. Tap Disable.

Where do I find uninstalled programs on Windows 7? ›

Launch the Event Viewer and open up the section Windows Logs, sub-section Application. Sort the list by the Source column, then scroll and view the informative events produced by "MsiInstaller". That did the trick, thanks!

How do I Uninstall Windows 10 and install Windows 7? ›

Way 1: Uninstall Windows 7 in System Configuration
  1. Enter "msconfig" in the search field of desktop taskbar > Click "System Configuration".
  2. Switch to "Boot" and choose "Windows 10"(only version to boot into directly) > Tap "Set as default".
  3. Select "Windows 7" > Click "Delete".

Why can't I delete Spotify from my PC? ›

One reason you may find it difficult to uninstall Spotify on Windows 10 is when the program's entry AppData folder file in the control panel is missing. Also, if you do not have the uninstaller program on your Windows 10, it may be difficult for you to uninstall the Spotify app unless you use other advanced methods.

How did Spotify get installed on my computer? ›

According to user reports, Spotify is installed automatically and run on system start, prompting users to sign-in to accounts or sign-up for new accounts.

How do I install Spotify? ›

Select Open to open the app.
  1. Open the App Store and select Search in the bottom right corner.
  2. Type in Spotify, and select Get for Spotify in the list.
  3. Select Get or Cloud Install for Spotify.
  4. Select Install.
  5. Select Open.

Top Articles
Latest Posts
Article information

Author: Madonna Wisozk

Last Updated: 19/11/2023

Views: 5985

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.