Skip to content

Instantly share code, notes, and snippets.

*&---------------------------------------------------------------------*
*& Report ZMM35BWART2MTYPE_MNT
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
report zmm35bwart2mtype_mnt.
@fanian
fanian / Sync gh-pages + master branches
Created February 11, 2019 07:31 — forked from mandiwise/Sync gh-pages + master branches
Keep gh-pages up to date with a master branch
// Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/
$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes
@fanian
fanian / remove_crw.cmd
Last active March 22, 2016 11:09 — forked from xvitaly/remove_crw.cmd
Remove telemetry updates for Windows 7 and 8.1
@ECHO OFF
REM #
REM # [EN] Remove telemetry updates for Windows 7 and 8.1
REM #
REM # Sources :
REM # https://gist.github.com/xvitaly/eafa75ed2cb79b3bd4e9#file-remove_crw-cmd
REM #
echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)