Home » SharePoint » Page 2
Creating claims-based web application is more flexible with SharePoint PowerShell script than CA. Here, the snippet for http and ssl site.
|
Add-PSSnapin Microsoft.SharePoint.Powershell $ap = New-SPAuthenticationProvider New-SPWebApplication -Name <Name> -ApplicationPool <ApplicationPool> -ApplicationPoolAccount <ApplicationPoolAccount> -URL <URL> -Port <Port> -AuthenticationProvider $ap # <Name> is the name of the new web application that uses claims-based authentication. # <ApplicationPool> is the name of the application pool. # <ApplicationPoolAccount> is the user account that this application pool will run as. # <URL> is the public URL for this web application. # <Port> is the port on which the web application will be created in IIS. # For Non-SSL New-SPWebApplication -Name "Web Portal - 80" -ApplicationPool "Web Portal Application Pool - 80" -ApplicationPoolAccount (Get-SPManagedAccount "sathiya\sp_appPool") -URL http://webportal.sathiya.com -Port 80 -HostHeader webportal.sathiya.com -DatabaseName WSS_Content_WebPortal_80 -Path "D:\Web_Portal_80" -AuthenticationProvider $ap # For SSL New-SPWebApplication -Name "Web Portal - 443" -ApplicationPool "Web Portal Application Pool - 443" -ApplicationPoolAccount (Get-SPManagedAccount "sathiya\sp_appPool") -URL https://webportal.sathiya.com -Port 443 -HostHeader webportal.sathiya.com -DatabaseName WSS_Content_WebPortal_443 -Path "D:\Web_Portal_443" -SecureSocketsLayer -AuthenticationProvider $ap |
Cheers…!
Here the quick solution to clean up/delete SharePoint list items that save a days lot if cleanup required. Manual efforts would take a lot so…
Another sample Powershell script to exporting “Running” and “Stopped” windows service to excel by using Powershell Array.
|
$location = "C:\sathiya.io"; $service = @("Running", "Stopped"); for ($i=0;$i -ne 2;$i++) { $text = $service[$i]; #Exporting the result to the text file # Append - This keyword is to update the file in the loop # Select - To export the field that you want to export Get-Service |?{$_.Status -eq "running"} | Select ServiceName, Status | Out-File $location\text1.txt -Append #Exporting the result to CSV Get-Service |?{$_.Status -eq $text} | Select ServiceName, Status | export-csv $location\file2.csv -Append } |
Cheers!
As we are all knows, the SharePoint Powershell can be fast and simple. Here the sample script for creating Managed Metadata Service Application;
|
New-SPServiceApplicationPool -Name "Managed Metadata Service App Pool" -Account sathiya\SPAppPool New-SPMetadataServiceApplication -Name "Managed Metadata Service Application" -ApplicationPool "Managed Metadata Service App Pool" -DatabaseName "MMD" New-SPMetadataServiceApplicationProxy -Name "Managed Metadata Service App Pool" -ServiceApplication "Managed Metadata Service Application" |
Cheers!
SharePoint site with custom host header will prompting the user login screen on local machine but either you can login or view the site from…
After, I installed and configured the workflow for SharePoint 2013 and register to the web application, it was getting an error while starting the workflow…
This script will disable all list and libraries from search result in the site collection.
|
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue $site = Get-SPSite http://spapplication $site | Get-SPWeb -Limit ALL | ForEach-Object { foreach ($list in $_.lists) { $list.NoCrawl = $true $list.Update() } } $site.Dispose() |
You can disable it from list/library’s advanced settings. If…