Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > PowerShell

Remove-AuthenticodeSignature

Closed Thread
 
Thread Tools Display Modes
Old 03-10-2007   #1 (permalink)
Joris van Lier
Guest


 

Remove-AuthenticodeSignature

Before sharing or committing scripts i'd like to remove any authenticode signatures, it seems there's no built-in command

does anyone know an easier or shorter way to remove the signature?

PS> $print=$true;Get-Content List-Scripts.ps1 | foreach {if ($_ -eq '# SIG # Begin signature block') {$print = !$print};
if($print ) {$_}}

Is there a way to exit the foreach?

Joris
Old 03-11-2007   #2 (permalink)
Joris van Lier
Guest


 

Re: Remove-AuthenticodeSignature

Joris van Lier wrote:
> Before sharing or committing scripts i'd like to remove any
> authenticode signatures, it seems there's no built-in command
>
> does anyone know an easier or shorter way to remove the signature?
>
>> $print=$true;Get-Content List-Scripts.ps1 | foreach {if ($_ -eq '#
>> SIG # Begin signature block') {$print = !$print}; if($print ) {$_}}

>
> Is there a way to exit the foreach?
>
> Joris


The doumentation for Break is not where i'd expect it, or atleast i'd expect
a related link to Break in Get-Help Foreach-Object -full

get-Content Query-Index.ps1 | %{if ($_ -eq '# SIG # Begin signature block')
{break} else {$_}}

Joris

Closed Thread

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Set-AuthenticodeSignature doesn't throw hard enough RickB PowerShell 4 06-02-2008 12:33 PM
Powershell get-authenticodesignature not complete Zanten, Ben van PowerShell 1 03-10-2008 03:19 AM
Powershell get-authenticodesignature not complete Zanten, Ben van PowerShell 0 03-05-2008 11:10 AM
Can't remove explorer menu bar after install/remove Live Search Club toolbar Robert Firth Vista General 2 08-08-2007 04:07 AM
How to remove updates? It seems to be impossible to remove an upda =?Utf-8?B?Q29wZW5oYWdlbg==?= Vista General 3 07-07-2006 10:18 AM








Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50