How to Protect Against Ransomware: Six Steps to a Secure System

Here’s an article I wrote for improved security. http://blog.max4erp.com/manufacturing-insights/protect-against-ransomware-six-steps-to-a-secure-system   Everything you can image is connected to the internet. Your home security, car, phone and so many other devices. The world is going “Io-T” Internet of Things which is the term coined to describe the proliferation and expansion of devices that are connected to the internet….

Read More

Revised Capture Logins for Dynamics GP using SQL 2012

USE master GO IF OBJECT_ID (‘sp_hexadecimal’) IS NOT NULL DROP PROCEDURE sp_hexadecimal GO CREATE PROCEDURE sp_hexadecimal @binvalue varbinary(256), @hexvalue varchar (514) OUTPUT AS DECLARE @charvalue varchar (514) DECLARE @i int DECLARE @length int DECLARE @hexstring char(16) SELECT @charvalue = ‘0x’ SELECT @i = 1 SELECT @length = DATALENGTH (@binvalue) SELECT @hexstring = ‘0123456789ABCDEF’ WHILE (@i…

Read More