http://channel9.msdn.com/Events/Build/2015/2-703
Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts
Sunday, May 10, 2015
Sunday, March 22, 2015
Monday, February 16, 2015
Wednesday, January 21, 2015
Excel subtotal
https://support.office.com/en-au/article/Summing-up-ways-to-add-and-count-Excel-data-d3f918a1-0151-403e-881f-a92f3176f8ea
http://www.gcflearnfree.org/excel2013/20.2
Group sum...
Data => Subtotal
http://www.gcflearnfree.org/excel2013/20.2
Group sum...
Data => Subtotal
Sunday, January 11, 2015
Monday, December 22, 2014
A history of Windows
http://windows.microsoft.com/en-us/windows/history
1975–1981: Microsoft boots up
1982–1985: Introducing Windows 1.0
1987–1990: Windows 2.0–2.11—More windows, more speed
1990–1994: Windows 3.0–Windows NT—Getting the graphics
1995–1998: Windows 95—the PC comes of age (and don't forget the Internet)
1998–2000: Windows 98, Windows 2000, Windows Me—Windows evolves for work and play
2001–2005: Windows XP—Stable, usable, and fast
2006–2008: Windows Vista—Smart on security
2009: Windows 7 introduces Windows Touch
2012: Windows 8 features apps and tiles
2013: Windows 8.1 expands the Windows 8 vision
1975–1981: Microsoft boots up
1982–1985: Introducing Windows 1.0
1987–1990: Windows 2.0–2.11—More windows, more speed
1990–1994: Windows 3.0–Windows NT—Getting the graphics
1995–1998: Windows 95—the PC comes of age (and don't forget the Internet)
1998–2000: Windows 98, Windows 2000, Windows Me—Windows evolves for work and play
2001–2005: Windows XP—Stable, usable, and fast
2006–2008: Windows Vista—Smart on security
2009: Windows 7 introduces Windows Touch
2012: Windows 8 features apps and tiles
2013: Windows 8.1 expands the Windows 8 vision
Sunday, December 21, 2014
Windows Phone MTBF
https://dev.windowsphone.com/zh-tw/OEM/docs/Phone_Testing/Test_Central_overview
Mean Time Between Failures
Mean Time Between Failures
Thursday, November 20, 2014
Windows Hardware Dev Center
http://msdn.microsoft.com/en-us/windows/hardware/gg236587.aspx
Windows Driver Kit (WDK)
Windows Assessment and Deployment Kit (ADK)
Windows Hardware Certification Kit (HCK)
Windows Driver Kit (WDK)
Windows Assessment and Deployment Kit (ADK)
Windows Hardware Certification Kit (HCK)
Saturday, November 01, 2014
Windows 8 Arch
http://www.zdnet.com/blog/microsoft/heres-the-one-microsoft-windows-8-slide-that-everyone-wants-to-redo/10736
Tuesday, October 07, 2014
Windows crash dump
http://msdn.microsoft.com/en-us/library/d5zhxt22.aspx
Put exe/dmp/pdb together, then open dmp and "Debug with Native Only"
Put exe/dmp/pdb together, then open dmp and "Debug with Native Only"
Wednesday, August 13, 2014
Tuesday, August 05, 2014
TypeScript
https://www.npmjs.org/package/typescript
http://www.typescriptlang.org/Samples/
http://typescript.codeplex.com/sourcecontrol/latest#samples/node/README.txt
$ npm install -g typescript
$ cd samples/node
$ tsc --module commonjs HttpServer.ts (compile ts to js)
$ node HttpServer.js
http://www.typescriptlang.org/Samples/
http://typescript.codeplex.com/sourcecontrol/latest#samples/node/README.txt
$ npm install -g typescript
$ cd samples/node
$ tsc --module commonjs HttpServer.ts (compile ts to js)
$ node HttpServer.js
Monday, August 04, 2014
Microsoft Build Developer Conference 2014 (Build Event)
http://www.buildwindows.com/
http://channel9.msdn.com/?wt.mc_id=build_hp
http://channel9.msdn.com/?wt.mc_id=build_hp
Saturday, August 02, 2014
MicroSoft WebMatrix
http://www.microsoft.com/web/webmatrix/
http://blogs.msdn.com/b/ericsk/archive/2013/05/02/webmatrix-3-asp-net-php-nodejs-development-tool.aspx
http://blogs.msdn.com/b/ericsk/archive/2013/05/02/webmatrix-3-asp-net-php-nodejs-development-tool.aspx
Thursday, April 17, 2014
sc : Delete windows service
http://geekswithblogs.net/shahedul/archive/2006/10/13/93984.aspx
http://stackoverflow.com/questions/20561990/how-to-solve-the-specified-service-has-been-marked-for-deletion-error
sc delete < SERVICE name>
[Note] if there is error "The specified service has been marked for deletion", close process explorer
http://stackoverflow.com/questions/20561990/how-to-solve-the-specified-service-has-been-marked-for-deletion-error
sc delete < SERVICE name>
[Note] if there is error "The specified service has been marked for deletion", close process explorer
Wednesday, April 16, 2014
Core dump on windows
http://stackoverflow.com/questions/4672572/how-can-i-configure-windows-to-generate-a-core-dump-from-an-application
http://support.microsoft.com/kb/241215
http://www.networkworld.com/news/2005/041105-windows-crash.html
http://www.simba.com/resources/knowledge-base/other-information-articles/create-a-core-dump-for-debugging-on-windows
http://support.microsoft.com/kb/241215
http://www.networkworld.com/news/2005/041105-windows-crash.html
http://www.simba.com/resources/knowledge-base/other-information-articles/create-a-core-dump-for-debugging-on-windows
Thursday, March 20, 2014
cacls
http://social.technet.microsoft.com/Forums/windows/en-US/430f61ee-b278-4cfe-8697-f085f9842d00/windows-7-icacls-deny-delete-also-denies-read?forum=w7itprosecurity
When you want to deny modify and allow read for Users, somehow the read permission not work if just using:
> icacls test /deny Users:m /grant Users:rx
Need to use cacls for read permission instead:
> icacls test /deny Users:m
> cacls test /E /G Users:R
When you want to deny modify and allow read for Users, somehow the read permission not work if just using:
> icacls test /deny Users:m /grant Users:rx
Need to use cacls for read permission instead:
> icacls test /deny Users:m
> cacls test /E /G Users:R
Sunday, March 09, 2014
Windows crash dump analysis : windbg
http://www.networkworld.com/news/2005/041105-windows-crash.html
http://msdn.microsoft.com/en-US/library/windows/hardware/ff538058(v=vs.85).aspx
http://msdn.microsoft.com/en-US/library/windows/hardware/ff551063(v=vs.85).aspx
http://www.wikihow.com/Read-Dump-Files
windbg.exe
http://msdn.microsoft.com/en-US/library/windows/hardware/ff538058(v=vs.85).aspx
http://msdn.microsoft.com/en-US/library/windows/hardware/ff551063(v=vs.85).aspx
http://www.wikihow.com/Read-Dump-Files
windbg.exe
Tuesday, February 18, 2014
Windows Azure
http://blog.sanc.idv.tw/p/windows-azure.html
http://msdn.microsoft.com/zh-tw/dd310332.aspx
http://msdn.microsoft.com/zh-tw/dd310332.aspx
Wednesday, February 12, 2014
Delete/Forget network drive (samba)
http://superuser.com/questions/379525/make-windows-7-forget-network-drive-paths
net use
net use devicename /delete (or net use * /d /y)
Subscribe to:
Posts (Atom)






