Remove-IEBookmark

Remove-IEBookmark 
    -URL 
    -DefaultProfile
Remove-IEBookmark 
    -URL 
    -TargetFolder

Description

Removes a bookmark containing the URL from an IE favorites folder.

Examples

Removes a bookmark for the metaBPA homepage from the IE Favorites.

Remove-IEBookmark -URL 'https://metabpa.org' -DefaultProfile

Parameters

-URL

[string[]]

Each of the array members represents the URI of abookmark to remove. Must resolve to a valid [uri] object.

-DefaultProfile

[switch]

The bookmarks are removed from the default Favorites folder of the current user. Mutually exclusive with -TargetFolder.

-TargetFolder

[string]

The bookmarks are removed from the folder specified. Mutually exclusive with -DefaultProfile.

 

Inputs

This function does not accept pipeline input.

Output

A single BookmarkOperationResult object.

[ back to module ]