大约有 41,000 项符合查询结果(耗时:0.0153秒) [XML]

https://www.tsingfun.com/down/code/83.html 

制作安装包图标 附psd源码 - 源码下载 - 清泛网 - 专注C/C++及内核技术

...包图标 附psd源码安装包 图标效果图如下:附psd源文件(win、mac版),可以将程序图标制作成类似这样的安装包图标。效果图如下: 附psd源文件(win、mac版),可以将程序图标制作成类似 这样的安装包图标。WinXP,Win7,Win8,W...
https://bbs.tsingfun.com/thread-246-1-1.html 

Win7禁用休眠 减少C盘容量占用 - 脚本技术 - 清泛IT社区,为创新赋能!

开始菜单 → 运行 → cmd.exe → 右键“以管理员身份运行” → 命令:powercfg -h off 回车即可,C盘容量占用减少立即生效。 另外,减少C盘容量占用常见的还有:将虚拟内存位置改到C盘以外。 设置完成后,需要重启计算机方...
https://bbs.tsingfun.com/thread-309-1-1.html 

Win7以上操作系统清理系统图标缓存脚本 - 脚本技术 - 清泛IT论坛,有思想、有深度

本帖最后由 沧海一粟 于 2015-07-21 13:43 编辑 rem 关闭Windows外壳程序explorer taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db" del /f "%userprofile%\AppData\Local\IconCache.db" attrib...
https://stackoverflow.com/ques... 

Windows 7, 64 bit, DLL problems

... problem with our executable. I'm running this C++ 32-bit executable on my Windows 7 64-bit development box that also has all those Microsoft applications (Visual Studio 2008 + 2010, TFS, SDK, Microsoft Office)... And it's still running just fine. ...
https://stackoverflow.com/ques... 

How do I show the value of a #define at compile-time?

...gma message("_ATL_VER is " _CRT_STRINGIZE(_ATL_VER)) #pragma message("WINVER is " _CRT_STRINGIZE(WINVER)) #pragma message("_WIN32_WINNT is " _CRT_STRINGIZE(_WIN32_WINNT)) #pragma message("_WIN32_IE is " _CRT_STRINGIZE(_WIN32_IE)) #pragma message("NTDDI_VERSION is " _CRT_STRINGIZE(NT...
https://stackoverflow.com/ques... 

Modifying the “Path to executable” of a windows service

...onfig SUCCESS SERVICE_NAME: ServiceName TYPE : 10 WIN32_OWN_PROCESS START_TYPE : 2 AUTO_START ERROR_CONTROL : 1 NORMAL BINARY_PATH_NAME : C:\Services\ServiceName LOAD_ORDER_GROUP : TAG : 0 DISPLAY_NAME : <D...
https://stackoverflow.com/ques... 

What are the best JVM settings for Eclipse? [closed]

...2002 with 2Go RAM and XPSp3. But I have also tested those same settings on Windows7) Eclipse.ini WARNING: for non-windows platform, use the Sun proprietary option -XX:MaxPermSize instead of the Eclipse proprietary option --launcher.XXMaxPermSize. That is: Unless you are using the latest jdk6u21...
https://www.tsingfun.com/it/tech/1684.html 

Outlook 开机自动启动 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...机自动启动把Outlook快捷方式拷贝到启动文件夹中即可。Win7:开始菜单 -> 启动Win10下:C: Users xxx AppData Roaming Microsoft Windows Start Me...把Outlook快捷方式拷贝到启动文件夹中即可。 Win7:开始菜单 -> 启动 Win10下: C:\Users\...
https://stackoverflow.com/ques... 

How can I force Powershell to return an array when a call only returns one object?

...to set up IIS bindings on a web server, and having a problem with the following code: 7 Answers ...
https://stackoverflow.com/ques... 

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

... CreateThread() is a raw Win32 API call for creating another thread of control at the kernel level. _beginthread() & _beginthreadex() are C runtime library calls that call CreateThread() behind the scenes. Once CreateThread() has returned, _beg...