Dot sourcing is “more-or-less” equivalent to ipmo.
So you need to separate that into 2 lines.
. .\Set-ImageSize.ps1
Set-ImageSize -Image $Source -Destination $Destination -WidthPx
$Width -HeightPx $Height
From: [email protected] [mailto:[email protected]] On
Behalf Of Sean Martin
Sent: Friday, June 16, 2017 5:49 PM
To: [email protected]
Subject: Re: [NTSysADM] Set-ImageSize Help
Thanks for the additional insight. Dot sourcing eliminated the error, but it's
not actually performing the resize. I haven't had to use dot sourcing in the
past, are there any particular considerations when passing parameters, or
should it be as simple as the following line:
. .\Set-ImageSize.ps1 $Source -Destination $Destination -WidthPx $Width
-HeightPx $Height
On Fri, Jun 16, 2017 at 12:10 PM, Michael B. Smith
<[email protected]<mailto:[email protected]>> wrote:
Don’t use ipmo. Use dot-sourcing.
From: [email protected]<mailto:[email protected]>
[mailto:[email protected]<mailto:[email protected]>]
On Behalf Of Sean Martin
Sent: Friday, June 16, 2017 3:54 PM
To: [email protected]<mailto:[email protected]>
Subject: Re: [NTSysADM] Set-ImageSize Help
Commenting the line that loads system.windows.forms didn't make a difference.
My script, along with set-image.ps1 are in the same directory. I use
"import-module .\set-imagesize.ps1 within a try/catch block and that succeeds.
The script fails at the point where it runs:
set-imagesize $sourcephoto -destination $destination -Widthpx $Width -HeightPx
$height
The variables are set as follows:
$sourcephoto = <uncpath to file>
$destination = <uncpath to directory>
$width = "96"
$height = "96"
I was able to test interactively by setting the same variables and running the
command. Kind of stumped as to why it won't run within my script.
On Fri, Jun 16, 2017 at 11:10 AM, Michael B. Smith
<[email protected]<mailto:[email protected]>> wrote:
One of the problems is that the script loads system.windows.forms – which is
inherently interactive. However, the script doesn’t appear to use it. So… take
that line out.
Tell me more about your setup for “running your script”?
From: [email protected]<mailto:[email protected]>
[mailto:[email protected]<mailto:[email protected]>]
On Behalf Of Sean Martin
Sent: Friday, June 16, 2017 2:35 PM
To: [email protected]<mailto:[email protected]>
Subject: [NTSysADM] Set-ImageSize Help
Good morning/afternoon,
Looking for a bit of assistance. I'm writing a script to import photos into
Active Directory and part of the process requires that the photos be resized,
so I downloaded this gem:
https://gallery.technet.microsoft.com/scriptcenter/Resize-Image-File-f6dd4a56
Importing and using the set-imagesize cmdlet works just fine when I run through
the process interactively. However, I get the error "The term 'Set-ImageSize'
is not recognized as the name of a cmdlet, function......" when I run my script.
I've verified the "module" imports successfully, so I've been banging my head
on why the cmdlet isn't recognized.
Anyone run into a similar scenario?