Skip to content

Commit

Permalink
Merge pull request #3 from ejsiron/resizable
Browse files Browse the repository at this point in the history
Update Updates.ps1
  • Loading branch information
ejsiron committed Mar 1, 2019
2 parents 980f2ab + 9856995 commit 0ad4866
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
11 changes: 4 additions & 7 deletions README.md
Expand Up @@ -4,16 +4,13 @@ Building on the foundation provided by the CoreConfig team on Core Configurator

The application structure remains largely intact from the CoreConfig product but introduces several enhancements and leverages several of the new cmdlets.

# Resizable Branch
Changing window styles to resizable in order to accommodate screen sizing variances
WORK STILL IN PROGRESS

## Current Version
1.1.3

## Packaged Downloads
The files are pre-packaged as a ZIP and an ISO. *Remember to unblock the files before trying to use them!*

[ISO](https://github.com/ejsiron/Corefig/raw/master/release-ISO/CoreFig.1.1.3.iso)

[ZIP](https://github.com/ejsiron/Corefig/raw/master/release-ZIP/Corefig.1.1.3.zip)

**Features carried forward:**
* Server renaming and domain joining
* Role and feature management
Expand Down
3 changes: 2 additions & 1 deletion Updates.ps1
Expand Up @@ -12,7 +12,8 @@ $frmUpdates = New-Object System.Windows.Forms.Form
$frmUpdates.ClientSize = New-Object System.Drawing.Size(1284, 708)
$frmUpdates.ControlBox = $false
$frmUpdates.Font = New-Object System.Drawing.Font("Tahoma", 8.25, [System.Drawing.FontStyle]::Regular, [System.Drawing.GraphicsUnit]::Point, ([System.Byte](0)))
$frmUpdates.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::FixedSingle
#$frmUpdates.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::FixedSingle
$frmUpdates.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::Sizable
$frmUpdates.MaximizeBox = $false
$frmUpdates.MinimizeBox = $false
$frmUpdates.ShowIcon = $false
Expand Down

0 comments on commit 0ad4866

Please sign in to comment.