├── .gitignore ├── LICENSE ├── README.md └── code ├── UxStyle.sln ├── bundle ├── Bundle.wxs ├── bundle.wixproj └── theme │ ├── uxstyle.png │ ├── uxstyle.wxl │ └── uxstyle.xml ├── driver ├── Logging.c ├── dispatch.c ├── dvrmain.c ├── miscroutines.c ├── patchroutines.c ├── resource.h ├── uxpatch package.vcxproj ├── uxpatch.h ├── uxpatch.rc └── uxpatch.vcxproj ├── installer ├── Conditions.wxs ├── CustomActions.wxs ├── Installer.wixproj ├── Product.wxs ├── msm │ ├── Microsoft_VC110_CRT_x64.msm │ ├── Microsoft_VC110_CRT_x86.msm │ ├── Microsoft_VC120_CRT_x64.msm │ ├── Microsoft_VC120_CRT_x86.msm │ ├── Microsoft_VC90_CRT_x86.msm │ ├── Microsoft_VC90_CRT_x86_x64.msm │ ├── policy_9_0_Microsoft_VC90_CRT_x86.msm │ └── policy_9_0_Microsoft_VC90_CRT_x86_x64.msm └── old.license.rtf ├── service ├── UnsignedThemesSvc.vcproj ├── UnsignedThemesSvc.vcxproj ├── app.manifest ├── resource.h ├── resource.rc ├── resource1.h └── src │ ├── main.cpp │ └── support.cpp └── tools └── _sign.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/README.md -------------------------------------------------------------------------------- /code/UxStyle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/UxStyle.sln -------------------------------------------------------------------------------- /code/bundle/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/bundle/Bundle.wxs -------------------------------------------------------------------------------- /code/bundle/bundle.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/bundle/bundle.wixproj -------------------------------------------------------------------------------- /code/bundle/theme/uxstyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/bundle/theme/uxstyle.png -------------------------------------------------------------------------------- /code/bundle/theme/uxstyle.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/bundle/theme/uxstyle.wxl -------------------------------------------------------------------------------- /code/bundle/theme/uxstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/bundle/theme/uxstyle.xml -------------------------------------------------------------------------------- /code/driver/Logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/Logging.c -------------------------------------------------------------------------------- /code/driver/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/dispatch.c -------------------------------------------------------------------------------- /code/driver/dvrmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/dvrmain.c -------------------------------------------------------------------------------- /code/driver/miscroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/miscroutines.c -------------------------------------------------------------------------------- /code/driver/patchroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/patchroutines.c -------------------------------------------------------------------------------- /code/driver/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/resource.h -------------------------------------------------------------------------------- /code/driver/uxpatch package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/uxpatch package.vcxproj -------------------------------------------------------------------------------- /code/driver/uxpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/uxpatch.h -------------------------------------------------------------------------------- /code/driver/uxpatch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/uxpatch.rc -------------------------------------------------------------------------------- /code/driver/uxpatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/driver/uxpatch.vcxproj -------------------------------------------------------------------------------- /code/installer/Conditions.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/Conditions.wxs -------------------------------------------------------------------------------- /code/installer/CustomActions.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/CustomActions.wxs -------------------------------------------------------------------------------- /code/installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/Installer.wixproj -------------------------------------------------------------------------------- /code/installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/Product.wxs -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC110_CRT_x64.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC110_CRT_x64.msm -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC110_CRT_x86.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC110_CRT_x86.msm -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC120_CRT_x64.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC120_CRT_x64.msm -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC120_CRT_x86.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC120_CRT_x86.msm -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC90_CRT_x86.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC90_CRT_x86.msm -------------------------------------------------------------------------------- /code/installer/msm/Microsoft_VC90_CRT_x86_x64.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/Microsoft_VC90_CRT_x86_x64.msm -------------------------------------------------------------------------------- /code/installer/msm/policy_9_0_Microsoft_VC90_CRT_x86.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/policy_9_0_Microsoft_VC90_CRT_x86.msm -------------------------------------------------------------------------------- /code/installer/msm/policy_9_0_Microsoft_VC90_CRT_x86_x64.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/msm/policy_9_0_Microsoft_VC90_CRT_x86_x64.msm -------------------------------------------------------------------------------- /code/installer/old.license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/installer/old.license.rtf -------------------------------------------------------------------------------- /code/service/UnsignedThemesSvc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/UnsignedThemesSvc.vcproj -------------------------------------------------------------------------------- /code/service/UnsignedThemesSvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/UnsignedThemesSvc.vcxproj -------------------------------------------------------------------------------- /code/service/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/app.manifest -------------------------------------------------------------------------------- /code/service/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/resource.h -------------------------------------------------------------------------------- /code/service/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/resource.rc -------------------------------------------------------------------------------- /code/service/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/resource1.h -------------------------------------------------------------------------------- /code/service/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/src/main.cpp -------------------------------------------------------------------------------- /code/service/src/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/service/src/support.cpp -------------------------------------------------------------------------------- /code/tools/_sign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riverar/uxstyle/HEAD/code/tools/_sign.bat --------------------------------------------------------------------------------