Skip to content

Commit b54ac24

Browse files
fixed image links in md files
1 parent cb68a98 commit b54ac24

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

PSScriptToolsHelp.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ Get all runspaces with an ID greater than 1, which is typically your current ses
368368

369369
A simple function to get common locations. This can be useful with cross-platform scripting.
370370

371-
![windows locations](./images/pslocation-win.png)
371+
![windows locations](images/pslocation-win.png)
372372

373-
![linux locations](./images/pslocation-linux.png)
373+
![linux locations](images/pslocation-linux.png)
374374

375375
### [Get-PowerShellEngine](https://github.com/jdhitsolutions/PSScriptTools/blob/master/docs/Get-PowerShellEngine.md)
376376

@@ -390,11 +390,11 @@ PS /home/jhicks> Get-PowerShellEngine
390390

391391
You can also get detailed information.
392392

393-
![Windows PowerShell](./images/get-powershellengine1.png)
393+
![Windows PowerShell](images/get-powershellengine1.png)
394394

395-
![PowerShell Core on Windows](./images/get-powershellengine2.png)
395+
![PowerShell Core on Windows](images/get-powershellengine2.png)
396396

397-
![PowerShell Core on Linux](./images/get-powershellengine3.png)
397+
![PowerShell Core on Linux](images/get-powershellengine3.png)
398398

399399
Results will vary depending on whether you are running PowerShell on Windows nor non-Windows systems.
400400

@@ -607,11 +607,11 @@ Because this module is intended to make scripting easier for you, it adds option
607607

608608
In the PowerShell ISE, you will get a new menu under Add-Ons.
609609

610-
![new menu](./images/todo-1.png)
610+
![new menu](images/todo-1.png)
611611

612612
You can use the menu or keyboard shortcut which will launch an input box.
613613

614-
![input box](./images/todo-2.png)
614+
![input box](images/todo-2.png)
615615

616616
The comment will be inserted at the current cursor location.
617617

@@ -627,15 +627,15 @@ This function is a graphical replacement for `Read-Host`. It creates a simple WP
627627
$name = Invoke-InputBox -Prompt "Enter a user name" -Title "New User Setup"
628628
```
629629

630-
![input box](./images/ibx-1.png)
630+
![input box](images/ibx-1.png)
631631

632632
You can also capture a secure string.
633633

634634
```powershell
635635
Invoke-Inputbox -Prompt "Enter a password for $Name" -AsSecureString -BackgroundColor red
636636
```
637637

638-
![secure input box](./images/ibx-2.png)
638+
![secure input box](images/ibx-2.png)
639639

640640
This example also demonstrates that you can change form's background color. This function will **not** work in PowerShell Core.
641641

@@ -1000,18 +1000,18 @@ This command provides a PowerShell alternative to the cmd.exe **MORE** command,
10001000
get-service | out-more
10011001
```
10021002

1003-
![out-more](./images/out-more.png)
1003+
![out-more](images/out-more.png)
10041004

10051005
This also works in PowerShell Core.
10061006

10071007
### [Out-ConditionalColor](https://github.com/jdhitsolutions/PSScriptTools/blob/master/docs/Out-ConditionalColor.md)
10081008

10091009
This command is designed to take pipeline input and display it in a colorized format,based on a set of conditions. Unlike `Write-Host` which doesn't write to the pipeline, this command will write to the pipeline. You can use a simple hashtable to define a color if the given property matches the hashtable key.
10101010

1011-
![out-conditionalcolor-1](./images/occ-1.png)
1011+
![out-conditionalcolor-1](images/occ-1.png)
10121012

10131013
Or you can specify an ordered hashtable for more complex processing.
1014-
![out-conditionalcolor-2](./images/occ-2.png)
1014+
![out-conditionalcolor-2](images/occ-2.png)
10151015

10161016
This command doesn't always work depending on the type of object you pipe to it. The problem appears to be related to the formatting system. Development and testing is ongoing.
10171017

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ Get all runspaces with an ID greater than 1, which is typically your current ses
385385

386386
A simple function to get common locations. This can be useful with cross-platform scripting.
387387

388-
![windows locations](./images/pslocation-win.png)
388+
![windows locations](images/pslocation-win.png)
389389

390-
![linux locations](./images/pslocation-linux.png)
390+
![linux locations](images/pslocation-linux.png)
391391

392392
### [Get-PowerShellEngine](https://github.com/jdhitsolutions/PSScriptTools/blob/master/docs/Get-PowerShellEngine.md)
393393

@@ -407,11 +407,11 @@ PS /home/jhicks> Get-PowerShellEngine
407407

408408
You can also get detailed information.
409409

410-
![Windows PowerShell](./images/get-powershellengine1.png)
410+
![Windows PowerShell](images/get-powershellengine1.png)
411411

412-
![PowerShell Core on Windows](./images/get-powershellengine2.png)
412+
![PowerShell Core on Windows](images/get-powershellengine2.png)
413413

414-
![PowerShell Core on Linux](./images/get-powershellengine3.png)
414+
![PowerShell Core on Linux](images/get-powershellengine3.png)
415415

416416
Results will vary depending on whether you are running PowerShell on Windows nor non-Windows systems.
417417

@@ -624,11 +624,11 @@ Because this module is intended to make scripting easier for you, it adds option
624624

625625
In the PowerShell ISE, you will get a new menu under Add-Ons.
626626

627-
![new menu](./images/todo-1.png)
627+
![new menu](images/todo-1.png)
628628

629629
You can use the menu or keyboard shortcut which will launch an input box.
630630

631-
![input box](./images/todo-2.png)
631+
![input box](images/todo-2.png)
632632

633633
The comment will be inserted at the current cursor location.
634634

@@ -644,15 +644,15 @@ This function is a graphical replacement for `Read-Host`. It creates a simple WP
644644
$name = Invoke-InputBox -Prompt "Enter a user name" -Title "New User Setup"
645645
```
646646

647-
![input box](./images/ibx-1.png)
647+
![input box](images/ibx-1.png)
648648

649649
You can also capture a secure string.
650650

651651
```powershell
652652
Invoke-Inputbox -Prompt "Enter a password for $Name" -AsSecureString -BackgroundColor red
653653
```
654654

655-
![secure input box](./images/ibx-2.png)
655+
![secure input box](images/ibx-2.png)
656656

657657
This example also demonstrates that you can change form's background color. This function will **not** work in PowerShell Core.
658658

@@ -1017,18 +1017,18 @@ This command provides a PowerShell alternative to the cmd.exe **MORE** command,
10171017
get-service | out-more
10181018
```
10191019

1020-
![out-more](./images/out-more.png)
1020+
![out-more](images/out-more.png)
10211021

10221022
This also works in PowerShell Core.
10231023

10241024
### [Out-ConditionalColor](https://github.com/jdhitsolutions/PSScriptTools/blob/master/docs/Out-ConditionalColor.md)
10251025

10261026
This command is designed to take pipeline input and display it in a colorized format,based on a set of conditions. Unlike `Write-Host` which doesn't write to the pipeline, this command will write to the pipeline. You can use a simple hashtable to define a color if the given property matches the hashtable key.
10271027

1028-
![out-conditionalcolor-1](./images/occ-1.png)
1028+
![out-conditionalcolor-1](images/occ-1.png)
10291029

10301030
Or you can specify an ordered hashtable for more complex processing.
1031-
![out-conditionalcolor-2](./images/occ-2.png)
1031+
![out-conditionalcolor-2](images/occ-2.png)
10321032

10331033
This command doesn't always work depending on the type of object you pipe to it. The problem appears to be related to the formatting system. Development and testing is ongoing.
10341034

0 commit comments

Comments
 (0)