Skip to content
spiderip logo
Published October 19, 2018 by admin

Powershell Move all files from folders and subfolders into single folder

Here's the PowerShell script to Move all files from folders and subfolders into a single folder Get-ChildItem -Path source -Recurse -File | Move-Item

Read More Powershell Move all files from folders and subfolders into single folder

Scripts

olders and subfolders into single folder

comments

Published October 10, 2018 by admin

Powershell script to connect to office365 with username and password

Here is the PowerShell script to connect to office365 with username and password and run queries. $Office365Username =

Read More Powershell script to connect to office365 with username and password

Scripts

office365

comments

Published August 13, 2018 by admin

SQL Server shrinkdatabase of all databases in MSSQL Server

Best Practices https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-shrinkfile-transact-sql?view=sql-server-2017 Consider the

Read More SQL Server shrinkdatabase of all databases in MSSQL Server

Windows

SQL

comments

Published August 13, 2018 by admin

Get list of databases from SQL Server

Execute this query to list of databases from SQL Server SELECT name FROM master.dbo.sysdatabases

Read More Get list of databases from SQL Server

Windows

SQL Tsql

comments

Published August 09, 2018 by admin

Postgres database with compressed option on windows

Here is a simple command to take Postgres Database backup with Compress option pg_dump -Fc dbname > filename Here is the official document from

Read More Postgres database with compressed option on windows

Windows

Postgres pg dump

comments

Published August 02, 2018 by admin

iisexpress.exe has exited with code 0 in visual studio 2015 on windows 10 machine

After Installing Visual studio Ent version 2015 on Latest Windows 10 Version I am getting the following error during the project run. iisexpress.exe

Read More iisexpress.exe has exited with code 0 in visual studio 2015 on windows 10 machine

Windows

iisexpress vs2015

comments

Published July 27, 2018 by admin

Install and configure OpenVPN server and route all client internet traffic through VPN tunnel

Install and configure OpenVPN server and route all client internet traffic through the VPN tunnel. My Test environment is Server: Windows Server 2012

Read More Install and configure OpenVPN server and route all client internet traffic through VPN tunnel

Windows

openvpn vpn

comments

Published July 16, 2018 by admin

linux disk space full but no files

Suddenly one of the Linux servers shows disk space is full but couldn't find huge files on the drive. This is due to that a process has opened a

Read More linux disk space full but no files

Linux

linux disk du df lsof

comments

Published July 16, 2018 by admin

Powershell script to convert VHD to WIM file

Here is a simple script to convert VHD file to WIM file #set the VHD mount folder $Mount="c:\mount" #create a folder c:\mount Mkdir $Mount #mount the

Read More Powershell script to convert VHD to WIM file

Scripts

vhd wim WDS

comments

Published July 12, 2018 by admin

sign out a visual studio online TFS account or on-premise account from visual studio

Here's a simple method to sign out an online or on-premise TFS account from visual studio, Open Visual Studio -->Views -->Other windows

Read More sign out a visual studio online TFS account or on-premise account from visual studio

Windows

tfs visual studio online tfs

comments

  • « Prev
  • 1
  • 2
  • 3
  • 4
  • Next »

Recent Posts

  • Linux copy folder structure without files to a new location
  • PowerShell script to send email using Amazon SES with credentials
  • IIS url rewrite one folder and sub-content to another domain with query string
  • Powershell script to remove windows user profile and exclude some users
  • error CS0012: The type 'System.Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.

Popular Posts

  • Powershell Invoke-WebRequest ignore certificate warning
  • Powershell script to import a certificate to the local machine trusted root certificate store
  • react-native init project create error import type {CommandT} from './commands' . SyntaxError: Unexpected token import
  • TortoiseSVN overlay icons not showing in windows 10
  • Powershell script to convert VHD to WIM file

Archive

  • ▼ 2019 (5)
    • February (1)
    • January (4)
  • ► 2018 (33)
    • November (4)
    • October (3)
    • August (4)
    • July (7)
    • June (8)
    • May (2)
    • April (5)

Popular Tags

  • linux (3)
  • powershell (3)
  • iis (2)
  • SQL (2)
  • disk (2)

Spiderip-Blog

Spiderip blog offer latest powershell scripts and resources