-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<# | ||
.NOTES | ||
=========================================================================== | ||
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2021 v5.8.191 | ||
Created on: 28/06/2022 14:41 | ||
Created by: Dvir F | ||
Organization: ITMS | ||
Filename: | ||
=========================================================================== | ||
.DESCRIPTION | ||
A description of the file. | ||
#> | ||
|
||
$vbsFile = "IE11.vbs" | ||
$site = "about:blank" | ||
$vbsFileContent = @" | ||
Set oIE = CreateObject("InternetExplorer.Application") | ||
oIE.Visible = True | ||
oIE.Navigate "$site" | ||
"@ | ||
|
||
if (!(Test-Path -Path "$env:TEMP\$vbsFile")) { New-Item -Path $env:TEMP -Name $vbsFile -ItemType "file" -Value $vbsFileContent -Force -Verbose | Out-Null } | ||
|
||
cscript.exe //B //NoLogo `"$env:TEMP\$vbsFile`" | Out-Null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
[MSI] | ||
ProductGUID= | ||
UpgradeGUID= | ||
ProductName=IE11 | ||
ProductVersion=1.0.1.0 | ||
ProductType=Script Application | ||
CompanyName=ITMS | ||
ProductIcon=C:\ProgramData\SAPIEN\MSI Icons\Script_Application_Installer.ico | ||
MSIHashType=None | ||
ShortcutFile= | ||
InstallFolder=[ProgramFiles]\[Company]\[Product] | ||
MSIName=IE11 | ||
OutputFolder=C:\Users\Dvir.fitoussi\ITMS\Automation - Documents\Programs\IE11 | ||
StagingFolder= | ||
64BitInstall=0 | ||
UseUI=0 | ||
AllUsers=1 | ||
AsAdmin=1 | ||
Certificate= | ||
CertificateThumbPrint= | ||
Password= | ||
TimeStampURL=http://timestamp.globalsign.com/?signature=sha2 | ||
UseSigningWizard=0 | ||
MinimumPowershellVersion=None | ||
[Package] | ||
PSBuildVersion=4.4 | ||
Output=IE11 | ||
OutputPath=bin | ||
Manifest= | ||
ManifestType=1 | ||
STA=1 | ||
GenerateConfigFile=1 | ||
ResolveExternalScripts=0 | ||
HashType=None | ||
Password2= | ||
Username= | ||
Engine=SAPIEN PowerShell V5 Host (Silent) | ||
Target=Microsoft Windows 64 Bit | ||
UseRunAs=0 | ||
PFX= | ||
PFXThumbPrint= | ||
TimeStamp= | ||
PFXPassword2= | ||
FileVersion=1.0.1.0 | ||
ProductVersion=1.0.1.0 | ||
ProductName=IE11 | ||
Description= | ||
Company=ITMS | ||
Copyright=Copyright (c) 2022 All rights reserved | ||
InternalName= | ||
OriginalName=IE11 | ||
Comments= | ||
RestrictUser= | ||
RestrictMAC= | ||
RestrictMachine= | ||
RestrictDomain= | ||
RestrictInstance=0 | ||
ProhibitLogging=0 | ||
DisableLogging=0 | ||
DisableTranscript=0 | ||
RestrictedOS= | ||
AutoIncrementVersion=0 | ||
Icon1=C:\Users\Dvir.fitoussi\Downloads\iconsext\icons\iexplore_9.ico | ||
[Deploy] | ||
MainFile= | ||
Destination= |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup useLegacyV2RuntimeActivationPolicy="true"> | ||
<supportedRuntime version="v4.0" /> | ||
<supportedRuntime version="v2.0" /> | ||
</startup> | ||
<appSettings> | ||
<add key="EnableWindowsFormsHighDpiAutoResizing" value="true"/> | ||
</appSettings> | ||
<runtime> | ||
<AppContextSwitchOverrides value="Switch.System.IO.BlockLongPaths=false;Switch.System.IO.UseLegacyPathHandling=false"/> | ||
</runtime> | ||
</configuration> |