Skip to content

Instantly share code, notes, and snippets.

View AshFlaw's full-sized avatar

AshFlaw

  • The Full Circle
View GitHub Profile
@wpsmith
wpsmith / breadcrumb-1.html
Last active October 27, 2015 13:12
SharePoint: Page Layout HTML Template
<!-- Default breadcrumb -->
<div class="breadcrumb">
<!--MS:<asp:SiteMapPath runat="server" SiteMapProviders="SPSiteMapProvider,SPXmlContentMapProvider" RenderCurrentNodeAsLink="false" HideInteriorRootNodes="true" NodeStyle-CssClass="crumb" CurrentNodeStyle-CssClass="active" RootNodeStyle-CssClass="crumb" SkipLinkText="" PathSeparator=" / " PathSeparatorStyle-CssClass="crumb-sep">-->
<!--ME:</asp:SiteMapPath>-->
</div>
@guitarrapc
guitarrapc / WindowsCredentialVault.psm1
Last active January 15, 2021 18:49
PowerShell Windows Credential Vault Module
function InitializeWindowsCredential
{
Write-Verbose ("Loading PasswordVault Class.")
[void][Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime]
}
InitializeWindowsCredential
function ConvertTo-PasswordCredential
{