如何在控制面板中显示实际应用程序大小?
How to show actual application size in control panel?
如何在控制面板程序和功能中显示应用程序的实际大小?
我知道我应该使用 #define Myappsize
但不知道正确的方法。
任何人都请帮助。
谢谢!
要修改可以在 Add/Remove 程序 控制面板小程序中看到的设置大小,您可以更改 UninstallDisplaySize
directive. To set it to a certain (single) file size at the compilation time you can use the preprocessor's FileSize
函数的值。例如:
[Setup]
AppName=My Program
AppVersion=1.5
DefaultDirName={pf}\My Program
UninstallDisplaySize={#FileSize('C:\Deployment\MyApp.exe')}
如何在控制面板程序和功能中显示应用程序的实际大小?
我知道我应该使用 #define Myappsize
但不知道正确的方法。
任何人都请帮助。
谢谢!
要修改可以在 Add/Remove 程序 控制面板小程序中看到的设置大小,您可以更改 UninstallDisplaySize
directive. To set it to a certain (single) file size at the compilation time you can use the preprocessor's FileSize
函数的值。例如:
[Setup]
AppName=My Program
AppVersion=1.5
DefaultDirName={pf}\My Program
UninstallDisplaySize={#FileSize('C:\Deployment\MyApp.exe')}