Skip to content

Commit 17ae22f

Browse files
committed
Changed encoding to UTF-8 with BOM
1 parent c42a244 commit 17ae22f

22 files changed

Lines changed: 39 additions & 38 deletions

PSDatabaseClone.psd1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
ModuleToProcess = 'PSDatabaseClone.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '1.0.0.0'
6+
ModuleVersion = '0.1.0.0'
77

88
# ID used to uniquely identify this module
99
GUID = '747980ca-0d3d-4529-b4fd-e6cdd059c62a'
1010

1111
# Author of this module
12-
Author = 'sander'
12+
Author = 'Sander Stad'
1313

1414
# Company or vendor of this module
15-
CompanyName = 'MyCompany'
15+
CompanyName = ''
1616

1717
# Copyright statement for this module
18-
Copyright = 'Copyright (c) 2018 sander'
18+
Copyright = 'Copyright (c) 2018 Sander Stad'
1919

2020
# Description of the functionality provided by this module
2121
Description = 'Cloning module for SQL Server databases'
@@ -53,10 +53,10 @@
5353
# ScriptsToProcess = @()
5454

5555
# Type files (.ps1xml) to be loaded when importing this module
56-
# TypesToProcess = @('xml\PSDatabasClone.Types.ps1xml')
56+
# TypesToProcess = @('xml\PSDatabaseClone.Types.ps1xml')
5757

5858
# Format files (.ps1xml) to be loaded when importing this module
59-
# FormatsToProcess = @('xml\PSDatabasClone.Format.ps1xml')
59+
# FormatsToProcess = @('xml\PSDatabaseClone.Format.ps1xml')
6060

6161
# Modules to import as nested modules of the module specified in
6262
# ModuleToProcess
@@ -104,7 +104,7 @@
104104
# ProjectUri = ''
105105

106106
# A URL to an icon representing this module.
107-
# IconUri = ''
107+
IconUri = 'https://www.sqlstad.nl/wp-content/uploads/2018/07/PSDatabaseClone_Logo_128.png'
108108

109109
# ReleaseNotes of this module
110110
# ReleaseNotes = ''

PSDatabaseClone.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$script:ModuleRoot = $PSScriptRoot
2-
$script:ModuleVersion = "1.0.0.0"
2+
$script:ModuleVersion = "0.1.0.0"
33

44
function Import-ModuleFile
55
{
@@ -32,8 +32,8 @@ function Import-ModuleFile
3232
}
3333

3434
# Detect whether at some level dotsourcing was enforced
35-
$script:doDotSource = Get-PSFConfigValue -FullName PSDatabasClone.Import.DoDotSource -Fallback $false
36-
if ($PSDatabasClone_dotsourcemodule) { $script:doDotSource = $true }
35+
$script:doDotSource = Get-PSFConfigValue -FullName PSDatabaseClone.Import.DoDotSource -Fallback $false
36+
if ($PSDatabaseClone_dotsourcemodule) { $script:doDotSource = $true }
3737

3838
# Execute Preimport actions
3939
. Import-ModuleFile -Path "$ModuleRoot\internal\scripts\preimport.ps1"
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
TOPIC
2-
about_PSDatabasClone
3-
1+
TOPIC
2+
about_PSDatabaseClone
3+
44
SHORT DESCRIPTION
5-
Explains how to use the PSDatabasClone powershell module
6-
5+
Module to create SQL Server database images and clones
6+
77
LONG DESCRIPTION
8-
<Insert Content here>
8+
PSDatabaseClone is a PowerShell module for creating SQL Server database images and clones.
9+
It enables administrator to supply environments with database copies that are a fraction of the original size.
910

1011
KEYWORDS
11-
PSDatabasClone
12+
PSDatabaseClone

functions/Get-PDCClone.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Get-PDCClone {
1+
function Get-PDCClone {
22
<#
33
.SYNOPSIS
44
Get-PDCClone get on or more clones

functions/Initialize-PDCVhdDisk.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Initialize-PDCVhdDisk {
1+
function Initialize-PDCVhdDisk {
22
<#
33
.SYNOPSIS
44
Initialize-PDCVhdDisk initialized the VHD

functions/Invoke-PDCRepairClone.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Invoke-PDCRepairClone {
1+
function Invoke-PDCRepairClone {
22
<#
33
.SYNOPSIS
44
Invoke-PDCRepairClone repairs the clones

functions/New-PDCClone.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function New-PDCClone {
1+
function New-PDCClone {
22
<#
33
.SYNOPSIS
44
New-PDCClone creates a new clone

functions/New-PDCImage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function New-PDCImage {
1+
function New-PDCImage {
22
<#
33
.SYNOPSIS
44
New-PDCImage creates a new image

functions/New-PDCVhdDisk.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function New-PDCVhdDisk {
1+
function New-PDCVhdDisk {
22
<#
33
.SYNOPSIS
44
New-PDCVhdDisk creates a new VHD

functions/Remove-PDCClone.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Remove-PDCClone {
1+
function Remove-PDCClone {
22
<#
33
.SYNOPSIS
44
Remove-PDCClone removes one or more clones from a host

0 commit comments

Comments
 (0)