Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 authored Jun 28, 2022
1 parent 8b2d47f commit 51dcdce
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 0 deletions.
24 changes: 24 additions & 0 deletions IE11.ps1
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
66 changes: 66 additions & 0 deletions IE11.ps1.psbuild
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 added bin/x64/IE11.exe
Binary file not shown.
13 changes: 13 additions & 0 deletions bin/x64/IE11.exe.config
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>

0 comments on commit 51dcdce

Please sign in to comment.