diff --git a/CountFolderFilesSetup.iss b/CountFolderFilesSetup.iss new file mode 100644 index 0000000..f13cd89 --- /dev/null +++ b/CountFolderFilesSetup.iss @@ -0,0 +1,26 @@ +#define MyAppName "CountFolderFiles" +#define MyAppVersion "2024.5.27" +#define MyAppExeName "CountFolderFiles.exe" + +[Setup] +AppId={{36E2CFC5-BBD7-403E-B6E4-65D39DAEE8D5} +AppName={#MyAppName} +AppVersion={#MyAppVersion} +DefaultDirName={autopf}\{#MyAppName} +DefaultGroupName={#MyAppName} +LicenseFile=LICENSE.txt +PrivilegesRequired=lowest +OutputBaseFilename=CountFolderFilesSetup +Compression=lzma +SolidCompression=yes +WizardStyle=modern + +[Languages] +Name: "english"; MessagesFile: "compiler:Default.isl" + +[Files] +Source: "{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion + +[Icons] +Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" +Name: "{usersendto}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" \ No newline at end of file diff --git a/Install_CountFolderFiles.ps1 b/FastCompileAndInstall.ps1 similarity index 100% rename from Install_CountFolderFiles.ps1 rename to FastCompileAndInstall.ps1