Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

PowerShell – Install MySQL

Posted on February 9, 2016 By David Kittell

Recently I had to install MySQL and configure it rather quickly, hopefully this will help someone else

First off install Chocolatey

Then Install MySQL

choco install -y  mysql
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Chocolatey Code MySQL PowerShell SQL

Post navigation

Previous post
Next post

Related Posts

Find Currently Running Query – T-SQL

Posted on April 29, 2013October 26, 2015

SELECT sqltext.TEXT, req.session_id, req.status, req.command, req.cpu_time, req.total_elapsed_time FROM sys.dm_exec_requests req CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS sqltext KILL [session_id] Reference: http://blog.sqlauthority.com/2009/01/07/sql-server-find-currently-running-query-t-sql/ Originally Posted on April 29, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran…

Read More

Get Number Of Business Days Between Two Dates

Posted on July 31, 2013October 26, 2015

CREATE FUNCTION fnBusinessDays ( @StartDate DATETIME ,@EndDate DATETIME ) RETURNS INT AS BEGIN IF ( @StartDate IS NULL OR @EndDate IS NULL ) RETURN (0) DECLARE @i INT = 0; WHILE (@StartDate <= @EndDate) BEGIN SET @i = @i + CASE WHEN datepart(dw, @StartDate) BETWEEN 2 AND 6 THEN 1…

Read More

Mac OSX – DNSMasq Ad Block DNS

Posted on July 30, 2016October 21, 2016

# Get IP – Start ip=$(ipconfig getifaddr en0) nen=0 while [ -z $ip ]; do let nen=nen+1 eth="en$nen" #echo $eth ip=$(ipconfig getifaddr $(echo $eth)) done echo $ip # Get IP – Stop # Install Homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" # Update your homebrew installation brew upgrade # Install dnsmasq…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes