Installer Adjustment App 0.2.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 Installer Adjustment App 0.2.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 second release of this application. In this version we made the following changes.

  • Added a function to display a list of installers registered in the system
  • Added a function to analyze and display unused files and folders in the Installer folder
  • Added a function to analyze and display the installer files (msi / msp) in use in the Installer folder

Continue reading “Installer Adjustment App 0.2.0”

Installer Adjustment App 0.1.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 Installer Adjustment App 0.1.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 first release of this application. In this version we made the following changes.

  • Implemented a function to display all files in the Installer folder

Continue reading “Installer Adjustment App 0.1.0”

File Package App 0.7.0

Since a newer version was released, Please do not download this version from this page. Please refer app page.

IconThis page is download for File Package App 0.7.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 seventh release of this application. In this version we made the following changes.

  • Fixed a bug that extended function is not activated in some license files
  • Support Windows 10 1903 (May 2019 Update) / Windows 10 1909 (November 2019 Update) for extended functions

Continue reading “File Package App 0.7.0”

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 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.

Depending on your PC environment, network environment, country or region, you may not be able to download from the above.
If you are unable to download it, please post a comment about it in the form at the end of this page. We will send you the direct download link. Your email address will not be published.

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.

Restart Manager Test 1.0.4 – main window

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.

Restart Manager Test 1.0.3 – main window

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

Since a newer version was released, Please do not download this version from this page. Please refer app page.

 

IconThis 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

Continue reading “File Package App 0.6.2”