Sunday, October 27, 2013

How to change MAC Address of existing Virtual Machines

 

I was having problem with my ethernet MAC in one of my VMs. I just did remember that I did not write post about this, so I am writing this now.

You will be simply failed if you have tried below things..,

1. Removing that ethernet from VM and adding new one

2. Generate a new MAC from the ethernet settings.

 

So what is the work around ?

lets start…,

Step 1.  Go to your VM working directory to the one you are facing issues. from Virtual Machine settings.

 

Step 2.  Edit the .vmx file by any text editor and find the below three entries below and remove completely from that file.

In my case these are below entries for you it will be in enthernet[n].generatedAddress= “your current MAC”

ethernet0.generatedAddress = "00:0c:29:2b:5b:8e"

ethernet0.generatedAddressOffset = "0"

ethernet0.addressType = "generated"

image

 

Step 3.  Add a new static MAC address line to the configuration file with help of the following entries:

ethernetN.address = "00:50:56:XX:YY:ZZ"
ethernetN.addressType = “static”

XX should be  hexadecimal number between 00h and 3Fh,

YY  and ZZ should be  valid hexadecimal numbers between 00h and FFh.

Friday, October 25, 2013

How to submit your sitemap to Blogger

 

Its really simple but I have created this post for the Blogger beginners.

Step 1.

Go to http://www.google.com/webmasters/   and sign in to gmail account which you have mapped in to Blogger.

Step 2.

Once you logged in you need to select your blog where you want to submit sitemap incase you are having more than one Blogs.

image

 

Step 3.

Now you are seeing the Dashboard of your selected Blog. Go to Crawl and choose Sitemaps as per the below screen.

image

 

Step 4. Click ADD /TEST SITEMAP like below and type following yellow colored text without quotes

atom.xml?redirect=false&start-index=1&max-results=500”  and Hit “Submit Sitemap”

image

Note : If you are keeping more than 500 posts in your blog you need to add one more entry like below example for 501 to 1000 like vise 1001 to 1500.

Example :

“atom.xml?redirect=false&start-index=501&max-results=1000”

Recover deleted files with Portable tools

 

Now a days everyone looking for light weight tools for often use and portable too. there could be two reasons,

one is people don’t want to hurt their computer / laptop while trying to get their work done with free wares when they are really looking for the best to get their result.

second thing people want to use this where they don’t have access to try Winking smile

 

these are the top 2 tools where I got 99% satisfied all the times.

 1. Recuva   - Download here

Accidentally deleted an important file? Lost something important when your computer crashed? No problem! Recuva recovers files deleted from your Windows computer, Recycle Bin, digital camera card, or MP3 player. And it's free!

Features :-

Undelete files on your computer

Deleted a file by mistake? Recuva brings lost files on your computer, USB drive, camera or iPod.  

Recovery from damaged or formatted disks

Even if you've formatted a drive so that it looks blank, Recuva can still find your files on it.  

Recover deleted emails

Emptied your email trash and need it back? Recuva's got you covered with full support for Microsoft Outlook Express, Mozilla Thunderbird, or Windows Live Mail.  

Recover deleted iPod music

Deleted music from your iPod or MP3 player? No problem, Recuva will get this back for you along with any additional track data.  

Restore unsaved Word documents

Did Microsoft Word crash or did you forget to save that important Word document. No problem with Recuva! As it can intelligently rebuild Word documents from their temporary files.  

Quick-Start Wizard

If you need your files back right away without fiddling with options, Recuva's Quick-Start Wizard is the answer.  

Deep Scan

Recuva can find most files within a minute. Or, set the Deep Scan to look for more deeply-buried results.  

Securely delete files you want to erase forever

Want to protect your deleted files? Recuva also allows you to permanently erase any traces of deleted files.  

Portable version

Take Recuva with you wherever you go with the portable version.

2. Wise Data Recovery -   Download here 

image


Easy to use

The operation is easy and simple. By several clicks only, you can search and recover the lost data.


Quick and Safe

Wise Data Recovery can search and recover the lost data quickly, accurately and safely.


Able to recover various types of files and different devices

The types of files that can be recovered by Wise Data Recovery include image, document, audio, video, compressed file and email. And the devices that can be recovered include local drive, USB, camera, memory card, removable devices and so on.


Show instructive scan results

Wise Data Recovery will indicate the data as "Good", "Poor", "Very Poor", or "Lost" in the scan results to show whether they are able or suitable to be recovered.

Sunday, October 20, 2013

How the JTA Transaction Manager helps to GemFire

 

JTA provides direct coordination between the GemFire cache and another transactional resource,

such as a database. Using JTA, your application controls all transactions in the same standard way, whether the transactions act on the GemFire cache, a JDBC resource, or both together.

By the time a JTA global transaction is done, the GemFire transaction and the database transaction are both complete.


imageContributed by Gemstone.

Using GemFire with JTA transactions requires these general steps.

During configuration:
1. Configure the JDBC data sources in the cache.xml file.
2. Include the jar file for any data sources in your CLASSPATH.


At run-time:
3. Initialize the GemFire cache.
4. Get the JNDI context and look up the data sources.
5. Start a JTA transaction.
6. Execute operations in the cache and database as usual.
7. Commit the transaction.


The transactional view exists until the transaction completes. If the commit fails or the transaction is rolled
back, the changes are dropped. If the commit succeeds, the changes recorded in the transactional view are
merged into the cache. At any given time, the cache reflects the cumulative effect of all operations on the
cache, including committed transactions and non-transactional operations.

JTA Transaction Limitations:

• Only one JDBC database instance per transaction is allowed, although you can have multiple connections
to that database.
• Multiple threads cannot participate in a transaction.
• Transaction recovery after a crash is not supported.
In addition, JTA transactions are subject to the limitations of GemFire cache transactions, which is discussed
in the previous section. When a global transaction needs to access the GemFire cache, JTA silently
starts a GemFire cache transaction.

JTA Sync Up :

JTA syncs up multiple transactions under one umbrella by enabling transactional resources to enlist with a
global transaction. The GemFire cache can register as a JTA resource through JTA synchronizations. This
allows the JTA transaction manager to call methods like commit and rollback on the GemFire resource and
manage the GemFire transactions. You can bind in JDBC resources so you can look them up in the JNDI
context. When bound in, XAPooledDataSource resources will automatically enlist if called within the context
of a transaction.

Example :

Using GemFire JTA Transaction Manager

The external data sources used in this transaction are configured in cache.xml.

Region r = ...; // the gemfire regionDataSource 
ds = ...; // other datasource

try {
Context ctx = cache.getJNDIContext();
Connection conn = null;
UserTransaction
tx = (UserTransaction)
ctx.lookup("java:/UserTransaction");
tx.begin();
conn = ds.getConnection();
Statement stmt = conn.createStatement();
String sqlSTR = "insert into " + tableName + " values (........ )";
stmt.executeUpdate(sqlSTR);
r.put("key", "value");
stmt.close();
tx.commit();
conn.close();
} catch (NamingException e) {
// handle the exception
}

Saturday, October 19, 2013

Mount NTFS USB / Partitions in Cent OS 6.3

 

All that you need to do install ntfs drivers by enabling Fedora EPEL Repository.

 

Run the commands in terminal

Step 1:  Enabling the repository

rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

Step 2.  Installing the ntfs driver

“yum -y install ntfs-3g”

 

LOL ! that’s all now it should mount your ntfs partitions / USB Sticks & etc ….,

KMS Activator for Windows 8.1 and 2012 R2

 

Are you running with Windows 8.1 or 2012 R2 and looking for KMS Activator ?

Sorry this is not the right post for you. I am just explaining how I got my 2012 R2  activated by Key Management Service (KMS)

Who ever using KMS keys need to add the new ones from  Microsoft  Volume license Service Center

https://www.microsoft.com/Licensing/servicecenter/default.aspx

image

Are you updated with hotfix for your existing KMS server ?

If not you can request for the hotfix(KB2691586) to download from here

Its applicable for

  • Windows Server 2008 R2
  • Windows Server 2008
  • Windows 8
  • Windows Server 2012
  • Windows 7
  • Windows Vista

Get the email and download it then install.

You definitely need a down time window for this.

Run this command as Administrator :

cscript %windir%\system32\slmgr.vbs /ipk

Note :- Each KMS host key is associated with a windows editions so client keys can not be used to Servers.

You will get the below error if  you are trying to add a key which is not matching with editions.

Error message: 0xc004f015: The Software Licensing Service reported that the license is not installed.SL_E_PRODUCT_SKU_NOT_INSTALLEDFor example, you receive this error message if you try to install a KMS host key for Windows 7 on a computer that is running Windows Server 2008 R2.For more information about KMS host keys and about associated groups of Windows editions, see Table 5 in the “Determine Product Key Needs” section of the Volume Activation Planning Guide (http://technet.microsoft.com/en-us/library/dd878528.aspx#E3IAC) . To activate the new KMS host key on the host computer, run the following command: cscript %windir%\system32\slmgr.vbs /ato

Try this command :  cscript %windir%\system32\slmgr.vbs /dli  to show your registered details and which server etc..

Thursday, October 17, 2013

Is your laptop shutting down for no reason ?

 

Last week was terrific to me because my laptop started to shutting down with out any reason my few files got corrupted. If I am turning on my laptop again it was showing nothing, lights not coming up so totally frustrated, yeah I kept many important project related files in it. 

After an hour my laptop started working simply by pressing power button. somehow I started Google  regarding this issue which is currently stopping my all beautiful works.  I got to know is possible due to cpu overheating.

Now , I started to look for few tools which can help me to monitor cpu temperature. found few tools but I chosen

1. All CPU Meter    from addgadjets.com 

image


All CPU Meter
is the most popular and sought-after gadget on our website and also in the Microsoft desktop gadgets gallery. This gadget shows your processor usage (up to 2 processors, 16 cores, and 32 threads), RAM usage, CPU frequency, and processor name (Intel or AMD). It also includes sound alerts as well as fly out features that display additional information about your processor, operating system, baseboard, bios, and computer system.

 

2. Core Temp  from Alcpu.com

image

Core Temp is a compact, no fuss, small footprint, yet powerful program to monitor processor temperature and other vital information.

What makes Core Temp unique is the way it works. It is capable of displaying a temperature of each individual core of every processor in your system!
You can see temperature fluctuations in real time with varying workloads. Core Temp is also motherboard agnostic.

Core Temp is easy to use, while also enabling a high level of customization and expandability.
Core Temp provides a platform for plug-ins, which allows developers to add new features and extend its functionality.

3.SpeedFan  from almico.com

image 

Speed Fan lets you take a deeper view at the status of your computer. Almost every computer includes support for hardware monitoring. Accessing digital temperature sensors is really useful. If you are trying to figure out why your PC hangs when under heavy load or after some hours of usage, Speed Fan might help you find the real cause. Very often it is a poor power supply, or an improperly installed heat sink that lead to behaviors that we tend to associate (incorrectly) with errors from the operating system. Speed Fan automatically searches your computer for informative chips: the hardware monitor chips. Speed Fan can display voltages,fan speeds and temperatures. On rare occasions, the BIOS doesn't activate such features. Speed Fan tries to enable them as long as this is a safe thing to do. Not only the motherboard is searched, but also some video cards and almost every currently sold hard disk. Speed Fan can access status info from EIDE, SATA and even SCSI drives, consistently showing internal data that can be used to diagnose current and future hard disk failures. This is known as S.M.A.R.T. (Self-Monitoring Analysis and Reporting Technology). At the lowest level, the Speed Fan hardware monitor software can access digital temperature sensors, but its main feature is its ability to control fan speeds according to the temperatures inside your PC, thus reducing noise.

 

Speed Fan allows to change your CPU Clock settings as you wish ( becareful It will hurt your machine by choosing  wrong setting )

Conclusion  :

I have changed Thermal paste after completely clean my CPU & heat sink ,bought cooler pad too, now my CPU’s temp is 40 C to 65 C.

 

Hope it helps…,

Is Windows 8.1 out with expected features ?

 

Really appreciated that the steps Microsoft taking to impress both Tablet & Desktop users by their great release of windows 8 but many Desktop users not satisfied because of their expectations about windows8 due to the features like Charm bar , Metro apps with No easy Desktop environment ,lack of interface in Modern  UI.

so its concluded that windows 8 not suitable for Enterprises users. but Microsoft did not stop! came back with expected features in Windows 8.1 ( back to pavilion ) on today Oct 17th 2013.

yeah  Microsoft released their windows 8.1     

Subscribe Windows 8.1 Now 

Try Windows 8.1 Now

image

 

Features that I knew in Windows 8.1

Folders with Synching

The users can join their work folders and make sync with file servers or in cloud based upon their permissions with automatic synchronization to data center.

OMA-DM API

OMA-DM API agent to allow management of Windows 8.1 devices with mobile device management products, like Mobile Iron or Air Watch.

Manage as a Mobile Device

IT administrators now have deeper policy management for Windows RT devices, and can manage Windows 8.1 PCs as mobile devices without having deploy a full management client.

VDI Enhancements

Enhanced Virtual Desktop Infrastructure (VDI) in Windows Server 2012 R2 with improvements in management, value, and user experience. Session Shadowing allows administrators to view and remotely control active user sessions in an RDSH server.

Wi-Fi Direct Printing

Connect to Wi-Fi Direct printers without adding additional drivers or software on your Windows 8.1 device, forming a peer-to-peer network between your device and the printer.

Native Miracast Wireless Display

Present your work wirelessly with no connection cords needed; just pair with a Miracast-enabled display and Miracast will use Wi-Fi to let you project wire-free.

 

Broadband Tethering

Turn your Windows 8.1 mobile broadband-enabled PC or tablet into a personal Wi-Fi hotspot, allowing other devices to connect and access the internet.

Remote Data Removal

Corporates now have more control over corporate content which can be marked as corporate, encrypted, and then be wiped when the relationship between the corporation and user has ended.

Malware Resistance

Windows Defender, Microsoft’s free antivirus solution in Windows 8, will include network behavior monitoring to help detect and stop the execution of known and unknown malware. Internet Explorer will scan binary extensions (e.g. ActiveX) using the antimalware solution before potentially harmful code is executed.

 

Boot to Desktop

configuration options available which will allow you to boot directly to the desktop in Windows 8.1.

Desktop and Start Screen

Improvements have been made to better support users who prefer a mouse and keyboard experience to access applications.

Tuesday, October 15, 2013

How to download a torrent file by any download manager

 

Free! Free! Free!   Bandwidth limit: up to 250GB per month

There are many reasons to look for torrent download by any download manager so that you can download from the place where you are restricted for torrent downloads.

yeah I am not going to talk more let me jump to matter….,

image

The great Furk.net file hoster offering the ability to remotely download the torrent files(data) onto their file servers and then access it as regular HTTP download so that you can use any download manager to download the torrents data on your local machine.

image

 

you can use any of the above existing account to sign in otherwise they are offering sign up too…,

Steps to download any torrents via Furk.net

Step 1. Once you login by using any above existing account or new one

Step 2 . Go to “My Files” and Choose “ NEW” you will get below screen.

image

Step 3. just paste the torrent file’s url   (or) hash info  (or) magnet link

             (or)

         choose your torrent file from your local machine.

Step 4. Click  “ Add download”  you will get email notification once its available for html download .

 

Check out few other Plug-ins features…,

image

Hope its helps….,

Saturday, October 12, 2013

How to enter into safe mode in windows 8

 

I heard many of people’s question that Why is not easy in Win8 to press F8 during startup to enter into Safe Mode like in Windows7 ? 

Yes it will work in very rare case but not all the time.

You can also use “msconfig” method to reboot into Safe Mode.

Otherwise

Lets follow the steps for workaround….,

I assume that you have some basic knowledge in Windows 8

1. Go to Start (or) Search  type “Command”   

    you will see the below screen.

 image 

2. Just select “Command Prompt” by Clicking Right Click then you will see the below screen.

then choose the “Run AS Administrator” as its in the below screen.

image

Incase you prompted for “User Account Control “  just say “YES”

2830120

3. Now you opened the Command Prompt with Administrator rights to execute a command.

just type “Bcdedit /set {bootmgr} displaybootmenu yes   and Hit enter then you should see below screen.

image

Once done hereafter you should able to get into Safe Mode by pressing “F8” on booting screen.

Note : If you need to cancel the prompt to enter options in booting , simply change Yes to No.

Example : “Bcdedit /set {bootmgr} displaybootmenu No”

 

Otherwise you can also use “msconfig” method to reboot into Safe Mode.

Hope it helps…,

Wednesday, October 9, 2013

Fix - Windows 8 Restart & Shutdown Problem

 

Is your Windows 8 restarting or shutdown automatically in sometime ?

Is your windows 8 restarting or hanging while you are getting into login screen ?

Is your windows 8 hanging while rebooting or shutting down often or very rare ?

 

Yes you are in the right place now,

Note :-  This is happening due to the new feature which is introduced with windows 8 called Hybrid.

It helps windows 8 to boot very quickly by hibernating the Kernel session on the same state.

Unfortunately for some reason due to compatibility issues its not working perfectly with all hardware.

Please follow the below instructions to fix:-

Step 1.    Go to RUN wizard by pressing “ Windows Key + R “   ( or anyway that you feel comfort)

                type : “powercfg.cpl “ and hit Ok button

               image

Step 2.   Choose the below option. “Choose what the power button does”

                image

 

Step 3. It will bring the below page

             (1)  Enable the “Change settings that are currently unavailable “.

             (2)  Just Uncheck the “ Turn on fast startup (recommended) “ .

image

Step 4.  “Save Changes “       and    Restart    to take effect.

 

Enjoy using windows 8 …,

Write to me for clarifications.

Tuesday, October 8, 2013

STOP PAYING YEARLY FEES FOR CLOUD STORAGE SERVICES

If you already have a cloud backup service, you are most likely paying anywhere from $49.99 to $199 a year!
Read Below To Find Out How Those Fees Come To An End!

Look, if you're a regular over at EyeOnWindows.com, you know that we don't typically endorse products – that's not our style. So, you know that when I do break out of the norm and willingly endorse something, it's because I know for a fact that it's worth it to you.

Now, most of you know me as Onuora – the CEO and founder of EyeOnWindows.com. Who you probably DON'T know is my buddy Rob Boirun (he pronounces that Byron of all things). If you keep reading you'll see that you are about to love this guy as much as I do, he's really hooking us up here.

A few weeks ago Rob contacted me about a new cloud storage service named DrivePop. It didn't sound like anything special when he was explaining it – it enables users to backup the contents of their Mac or PC to the cloud. I thought, what's the big deal? I already have a service like that and there are tons of them out there. Big whoop, right?

Well, get ready for this. Rob starts telling me that he really wants to get news of his service out there and in order to do that, he decided to provide me and all the EyeOnWindows.com visitors an exclusive offer.

NO monthly payments, NO recurring billing – EVER!

I bet you're loving Rob now! The thing is, everybody needs backup storage, it's just one of those things that goes along with owning a computer.

Whether you're an individual, a family, or a professional business, you can't have unexpected shut-downs, computer problems, power-surges, or theft destroying your precious and sensitive data and often-times erasing invaluable documents, pictures, and history forever.

It's a risk you just can't take.

So what do we do? We find a good cloud storage service and we pay the yearly fees – year after year after year. Of course, those services know we need them, so they never worry about you leaving.

Yet, Rob is offering all of the same stuff those other high-level cloud storage services are, but instead of paying year after year, you simply pay one flat fee – that's it!

DrivePop offers:

  • Unlimited backup space
  • Unthrottled bandwidth
  • Military grade AES-256 Encryption
  • Ability to stream music and movies from your account
  • File versioning (up to 30 versions)
  • You can view your files online, from any computer, anywhere in the world
  • Control panel and APP access
  • Unlimited computer usage
  • Access from any device (ipad, iPhone, Android, Windows RT, Win 8, Blackberry, etc...)

 

You're probably wondering by now what the catch is. First of all, I would never endorse a product that has any kind of catch (which is why I rarely ever personally endorse products in the first place).

The reason Rob is offering such a deal is simply because he wants to get the word out about his service. He trusts me and he thinks the people who visit EyeOnWindows.com are just the type to appreciate this service.

This is an exclusive offer, which means that not everybody is going to be able to take advantage of this – only you. Not only that, but this is a limited time offer. Rob has a business to run, after all, so he can't offer this deal forever.

Look, there's no pressure here but it's just common sense. You can pay between $500and $2000 within a 10 year period for all those other cloud storage services, or you can take advantage of this one-time special offer from my buddy Rob and never have to pay another yearly fee for backup storage again. Ever.

Rob has also told me to make sure everyone knows that each plan has a 30-day, no questions asked money-back guarantee.If for any reason whatsoever, you decide that you want your money back and that this service is not for you, simply contact his team and they'll issue a FULL  refund immediately. You're not going to have to jump through any hoops. You're not going to have to answer any questions. There are no cancellation fees involved – nothing but a straight-up return.

Now here are what some real life (no BS) DrivePop customers have to say about the service:

Saturday, October 5, 2013

How to root Android x86 4.3

 

There are familiar ways available to get root your Android devices but today I would like to share the procedure to root your Android 4.3 x86 yeah on your Desktop / Laptop / VMware / Virtual Box.

Actually this x86 based Android editions giving easy interface to people to choose consoles by pressing “Alt + F1” and  combination of Alt + F1 / F2 F3.

image

 

1. Download the rooting script here 

    ( you can directly download this in your Android and use ES File manager to extract)

2. Extract the zip on your Android and remember the path

3. Change your directory to the Extracted folder

     Ex:- “ # cd /sdcard/Download/Androidx86root “   ( in my case)

4. Run this command “ # sh install.sh

    and follow the instructions on your screen , yeah just say yes for 2 questions then you will see the prompt to restart as the rooting is done.

 

Write me for questions .

Fix - Transport (VMDB) error–44 on VMware workstation

 

Are you getting the below error every time you run or while powering on your virtual machine ?

image

No worries. Yeah there is a workaround.

Method 1 :-

Open the VMware Workstation with Administrative Rights.

that’s all.

image

 

Method 2 :-

You don’t want to every time to choose Administrator ?

Lets do this  for one time

Go to “properties” from exactly above picture and follow the below instructions

image

Yes you are done. hereafter you can simply open VMware workstation it will elevate the Administrative rights.

 

Hope it helps.

 

Write me for questions.

How to install Android 4.3 in VMware on Windows

 

In this post I assume that you have basic knowledge on VMware workstation or VMware player.

1.You can download Androidx86  4.3 from here    

(OR)

  Otherwise you can go to http://www.android-x86.org/download then choose your correct PC version.

2. Create a New Virtual Machine on VMware workstation or VMware Player for the below configuration

Note :- RAM Minimum 256 MB required.

image

3. Mount your Downloaded .ISO file to newly created machine.

image

4. Boot your new machine then you will get the below screen as soon you boot .

image

5. You can try the Android 4.3 with out installation by choosing the above screenshot option on your screen.

otherwise choose installation to start the installation

6. Create Partition to install

image

7. Choose New and Hit Enter

image

8. Choose Primary to make this partition Primary

image

 

9. Choose Bootable flag to make that Primary partition to Bootable and Hit Enter

image

10 . Choose “Quit” to exit the partition. Now you should see the Newly created partition.

11. Choose the Newly created partition and hit Enter.

image

12. Now you choose “Ext3” file system to format the new partition to install the Android

       Hit  “Yes” twice for warning prompts.

Installation will begin……,

It will reboot once the installation succeed.

image

 

See my next post to root your android x86.

Friday, October 4, 2013

Create Menu Bar to categorize Blogger posts

 

Are you a good blogger ?

Are you struggling to categorize your posts in Blogger ?

If Yes ? this post definitely going to help you if you are not really knowing this feature before.

First of all you need to create “Labels” for all your posts  if not yet done I would suggest to create labels.

done ?

I assume that you created the labels for all your posts.

Lets go ….,

1. Login to your BlogSpot dashboard.

      there are many ways to go to your Blog’s dashboard I am just showing one of that ways below…,    

       http://www.blogger.com/home then choose your blog  that’s it

        image

2. Go to pages.

           image

3. Click on Create New Page.

        image

4. Choose Web Address when the drop down menu bar comes up.

5. Type in the title as you want it to appear (Example : type the word “Tools”).

      image

6. Now you need to type in a URL.

     http://your.blogger.com/search/label/<your label name>

 

and “ Save “

7. Just make sure the below settings

        “show pages as top tabs”

    image

 

If you have followed my steps correctly you all done.

Now your blog should show menus on top and categorized.

 

Write me if you got struck in between.

Hope it helps.

How to Remove All Pre-Installed Windows 8 Metro Apps

 

Today I want to share the very simple steps to remove All Metro apps.

It will be very useful for people who don’t like this feature in windows8.

Let me jump to procedure…,

Are you want to remove all Metro apps permanently ?

No worries you can get the all metro apps by creating new user (but apps will be only under new user profile)

Steps to follow….,

1. Open powershell with Administrator rights.(type “powershell” on search bar & right click that to choose open with Administrator.

2. type “Get-AppxPackage –AllUsers” and hit enter

image

3.  You want to remove all metro apps right ?

type “Get-AppxPackage -AllUsers | Remove-AppxPackage” and hit enter.

You all done

If you want to stop the re appearance of Metro apps while creating New User?  just execute the below comment.

“Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online”