Here it is, as promised: Block Google Play and Google Play Services:
[Bash] Prevent Google Play & Google Play Services on HUAWEI M865 - Pastebin.com
CAVEAT:
if you want to KEEP access to Google Market, uninstall Play and Play services FIRST, right before the creation of the directories... you won't need to rm the apk's.
if you want to BLOCK Google Market too, proceed straight to the commands. Then, play never gets fully uninstalled (assuming it ran at least once in the first place) because of its data file; which disables Market also...
# Keep the Google Market active on a HUAWEI M865 without rooting:
# First, you must use HUAWEI's DRM enforcement package!
# Apply your GPL-given legal rights to /data/app (instructions not provided - figure it out! NO ROOT!)
# Then run this script while logged in as shell via adb:
#
cd /data/app
#
mkdir com.android.vending-1.apk
mkdir com.android.vending-1.apk/empty
chmod 555 com.android.vending-1.apk
chmod 555 com.android.vending-1.apk/empty
#
mkdir com.google.android.gms-1.apk
mkdir com.google.android.gms-1.apk/empty
chmod 555 com.google.android.gms-1.apk
chmod 555 com.google.android.gms-1.apk/empty
The instructions for Huawei-GPLDRM:
Opening a Huawei m865 - Pastebin.com
$ cd /data$ rmdir drm/rights
$ ln -s /data /data/drm/rights
$ cd /data/HWUserData
$ rmdir ContactIcons
$ ln -s /data/data ContactIcons
$ rmdir Recordings
$ ln -s /data/app Recordings
$ rmdir Videos
$ ln -s /data/cust Videos
$ rmdir Pictures
$ ln -s /data/system Pictures
$ reboot
#***THEN***#
$ cd /data
$ rm drm/rights
$ rmdir drm
$ ln -s /data drm
$ ln -s /cache rights
$ reboot
So basically, before you can do the first pastebin, you're going to need to do at least the one that opens /data/app from the second pastebin, and reboot. Then you can shell on in and cleanse.
If this confuses your launcher, see my other posts and/or delete your launcher's data file so it can rebuild itself.