I wanted to use Ajax Minifier. The latest version is version 5.14. However, the installer download site (CodePlex) was closed in 2017. This is inconvenient, so I would like to be able to download Ajax Minifier and see the information. Continue reading “Microsoft Ajax Minifier”
Microsoft Ajax Minifier 5.14
This page is download for Microsoft Ajax Minifier 5.14.
Filename: AjaxMinSetup_5.14.msi Filesize: 1,474,560 bytes MD5: f290396dc1e430781d647a2f916dca97 SHA1: d8c0359e82fd1a329a1859df29a15f36413a3db3
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
For more information on Microsoft Ajax Minifier, please click here.
Restart Manager for Desktop app #6 (Change in behavior of sign-out on Windows 10)
On Windows 10 1709, the default behavior of sign-out (logoff) has been changed. Applications will always be restarted by the Restart Manager. How does this change affect the app?
Continue reading “Restart Manager for Desktop app #6 (Change in behavior of sign-out on Windows 10)”
Restart Manager for Desktop app #5 (Test tool)
Last time (Sorry, but it is posted only in Japanese), I checked the operation of the restart manager about the package created with File Package App. When creating that post, I thought good if there was a tool that could easily check all behaviors. I created a test tool there.
Continue reading “Restart Manager for Desktop app #5 (Test tool)”
Restart Manager Test 1.0.4
This page is download for Restart Manager Test Tool 1.0.4.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the 2nd release of this tool. In this version, the following features were implemented.
- Display related information
- Display process ID
- Display log file name
- Adjust minimum size of window resize
You can check the operation related to the restart manager.

Features
Main window – upper left area
Buttons in this area can be tested by invoking Restart Manager related APIs individually.
RegisterApplicationRestart()
Call RegisterApplicationRestart()
which was introduced in Windows Vista and register the application restart (tool itself).
RegisterApplicationRestart(L"/restart", RESTART_NO_CRASH | RESTART_NO_HANG);
Call with the above arguments. It will not do anything when running on Windows XP.
UnregisterApplicationRestart()
Call UnegisterApplicationRestart()
which was introduced in Windows Vista and unregister the application restart (tool itself).
UnregisterApplicationRestart();
Since this API has no arguments, it simply calls it. It will not do anything when running on Windows XP.
ShutdownBlockReasonCreate()
Call ShutdownBlockReasonCreate()
which was introduced in Windows Vista and register the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd, pszReasonW);
Call with the above arguments. hDialogWnd
is set to the window handle of the main window of this tool. pszReasonW
is set the text string in the edit box under the button. It will not do anything when running on Windows XP.
ShutdownBlockReasonDestroy()
Call ShutdownBlockReasonDestroy()
which was introduced in Windows Vista and unregister the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd);
Call with the above arguments. hDialogWnd
is set the window handle of the main window of this tool. It will not do anything when running on Windows XP.
Main window – upper right area
The check box in this area allows you to set the action to be taken when the main window (dialog) of this tool receives the WM_QUERYENDSESSION message. When multiple check boxes are checked, they are processed in order from the top in the message handler of the WM_QUERYENDSESSION message.
Call RegisterApplicationRestart()
Call RegisterApplicationRestart () which was introduced in Windows Vista and register the application restart (tool itself).
RegisterApplicationRestart(L"/restart ", RESTART_NO_CRASH | RESTART_NO_HANG);
Call with the above arguments. It will not do anything when running on Windows XP.
Call UnregisterApplicationRestart()
Call UnegisterApplicationRestart()
which was introduced in Windows Vista and unregister the application restart (tool itself).
UnregisterApplicationRestart();
Since this API has no arguments, it simply calls it. It will not do anything when running on Windows XP.
Call ShutdownBlockReasonCreate()
Call ShutdownBlockReasonCreate()
which was introduced in Windows Vista and register the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd, pszReasonW);
Call with the above arguments. hDialogWnd
is set to the window handle of the main window of this tool. pszReasonW
is set the text string in the edit box on left area. It will not do anything when running on Windows XP.
Wait 20 sec.
Wait 20 seconds in the message handler. In Windows Vista or later, the application must respond to the WM_QUERYENDSESSION message within 5 seconds, so you can test it. Specifically, when you check, call Sleep().
Sleep(20000);
Call with the above arguments.
Return false
Determine the return value of the WM_QUERYENDSESSION message handler. If it is not checked, true is set as return value. If checked, false is set as return value. “true” indicates that the application can be terminated. “false” indicates that the application refused to shut down.
Main window – lower area
Result
In the right edit box, the error code of the last API executed is set. The lower multi-row edit box shows the results of calling each API and the timing of receiving the window message about the restart manager.
Ceate message log file
If checked, it will output to the file the result of calling each API and the timing of receiving the window message about the restart manager. Basically the same as the history displayed in the screen is output to the file. The output file is created in the same folder as the EXE file. The file name is the name obtained by adding the extension “. Log” to the EXE file name.
Log Filename
The name displayed here is the name of the log file to be created in the same folder as the Exe file.
Process ID
The process ID of this tool. The process ID of the tool is displayed so that you can easily check the process ID when testing with RmLogoTest.exe.
Return to the top page of this app
Restart Manager Test 1.0.3
Since a newer version was released, Please do not download this version from this page. Please refer app page.
This page is download for Restart Manager Test Tool 1.0.3.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the first release of this application. In this version we made the following features.
- Test function of restart manager API
- Register application restart to Restart Manager (RegisterApplicationRestart)
- Unregister application restart to Restart Manager (UnregisterApplicationRestart)
- Register the shutdown block reason (ShutdownBlockReasonCreate)
- Unregister the shutdown block reason (ShutdownBlockReasonDestroy)
- Test function for processing when WM_QUERYENDSESSION is received
- Register application restart to Restart Manager
- Unregister application restart to Restart Manager
- Register the shutdown block reason
- Wait for a certain period of time
- Set return value
- Log file creation function
You can check the operation related to the restart manager.

Features
Main window – upper left area
Buttons in this area can be tested by invoking Restart Manager related APIs individually.
RegisterApplicationRestart()
Call RegisterApplicationRestart()
which was introduced in Windows Vista and register the application restart (tool itself).
RegisterApplicationRestart(L"/restart", RESTART_NO_CRASH | RESTART_NO_HANG);
Call with the above arguments. It will not do anything when running on Windows XP.
UnregisterApplicationRestart()
Call UnegisterApplicationRestart()
which was introduced in Windows Vista and unregister the application restart (tool itself).
UnregisterApplicationRestart();
Since this API has no arguments, it simply calls it. It will not do anything when running on Windows XP.
ShutdownBlockReasonCreate()
Call ShutdownBlockReasonCreate()
which was introduced in Windows Vista and register the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd, pszReasonW);
Call with the above arguments. hDialogWnd
is set to the window handle of the main window of this tool. pszReasonW
is set the text string in the edit box under the button. It will not do anything when running on Windows XP.
ShutdownBlockReasonDestroy()
Call ShutdownBlockReasonDestroy()
which was introduced in Windows Vista and unregister the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd);
Call with the above arguments. hDialogWnd
is set the window handle of the main window of this tool. It will not do anything when running on Windows XP.
Main window – upper right area
The check box in this area allows you to set the action to be taken when the main window (dialog) of this tool receives the WM_QUERYENDSESSION message. When multiple check boxes are checked, they are processed in order from the top in the message handler of the WM_QUERYENDSESSION message.
Call RegisterApplicationRestart()
Call RegisterApplicationRestart () which was introduced in Windows Vista and register the application restart (tool itself).
RegisterApplicationRestart(L"/restart ", RESTART_NO_CRASH | RESTART_NO_HANG);
Call with the above arguments. It will not do anything when running on Windows XP.
Call UnregisterApplicationRestart()
Call UnegisterApplicationRestart()
which was introduced in Windows Vista and unregister the application restart (tool itself).
UnregisterApplicationRestart();
Since this API has no arguments, it simply calls it. It will not do anything when running on Windows XP.
Call ShutdownBlockReasonCreate()
Call ShutdownBlockReasonCreate()
which was introduced in Windows Vista and register the reason for blocking shutdown.
RegisterApplicationRestart(hDialogWnd, pszReasonW);
Call with the above arguments. hDialogWnd
is set to the window handle of the main window of this tool. pszReasonW
is set the text string in the edit box on left area. It will not do anything when running on Windows XP.
Wait 20 sec.
Wait 20 seconds in the message handler. In Windows Vista or later, the application must respond to the WM_QUERYENDSESSION message within 5 seconds, so you can test it. Specifically, when you check, call Sleep().
Sleep(20000);
Call with the above arguments.
Return false
Determine the return value of the WM_QUERYENDSESSION message handler. If it is not checked, true is set as return value. If checked, false is set as return value. “true” indicates that the application can be terminated. “false” indicates that the application refused to shut down.
Main window – lower area
Result
In the right edit box, the error code of the last API executed is set. The lower multi-row edit box shows the results of calling each API and the timing of receiving the window message about the restart manager.
Ceate message log file
If checked, it will output to the file the result of calling each API and the timing of receiving the window message about the restart manager. Basically the same as the history displayed in the screen is output to the file. The output file is a file whose name is the same as the EXE file, with the extension “.log” added to the EXE file name.
The output file is created in the same location as the EXE file. The file name is a name with the extension “. Log” added to the EXE file name.
Return to the top page of this app
File Package App 0.6.2
This page is download for File Package App 0.6.2.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the sixth release of this application. In this version we made the following changes.
- Improvement of UI of basic functions and optional functions
- Move a part of the extended functions to the basic function
- Fixed a bug in the message of extended function
File Package App 0.6.1
Since a newer version was released, Please do not download this version from this page. Please refer app page.
This page is download for File Package App 0.6.1.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the fifth release of this application. In this version we made the following changes.
- Fix a bug of basic functions and optional functions
- Support Windows 10 1809 (October 2018 Update) for extended functions
File Package App 0.6.0
Since a newer version was released, Please do not download this version from this page. Please refer app page.
This page is download for File Package App 0.6.0.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the forth release of this application. In this version we made the following changes.
- Improvement of basic functions and optional functions
- Addition of license management function to extended functions
File Package App 0.5.2
Since a newer version was released, Please do not download this version from this page. Please refer app page.
This page is download for File Package App 0.5.2.
You can download it from “DOWNLOAD” link in “Verify CAPTCHA to Download” above. In the “Verify CAPTCHA to Download”, if “I am not a robot” is displayed, please check and select the image with instructions. You can download it by selecting the image correctly.
About this version
This is the third release of this application. In this version we made the following changes.
- Improvement of basic functions and optional functions
- Additional implementations of extend functions