mail-tester.com is a free online service that allows you to test your emails for Spam, Malformed Content and Mail Server Configuration problems
A online website, check the email server issues
https://www.mail-tester.com/Â
trying on a metaphor

⣠Chile in a Photography âŁ
One Nice Bug Per Day

JBB: An Artblog!
Sweet Seals For You, Always

â
wallacepolsom

@theartofmadeline
đŞź

Origami Around
Cosmic Funnies
styofa doing anything

TVSTRANGERTHINGS
AnasAbdin
todays bird

Kiana Khansmith

if i look back, i am lost

çĽćĽ / Permanent Vacation
seen from Canada

seen from Germany

seen from United States
seen from United States

seen from Malaysia
seen from Jamaica

seen from TĂźrkiye
seen from Brazil
seen from United Kingdom
seen from United States
seen from Hong Kong SAR China

seen from Canada
seen from T1
seen from United States
seen from Italy

seen from Singapore

seen from T1
seen from United States
seen from Indonesia
seen from Portugal
@timothylam
mail-tester.com is a free online service that allows you to test your emails for Spam, Malformed Content and Mail Server Configuration problems
A online website, check the email server issues
https://www.mail-tester.com/Â

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Psexec ç¨ćłsample
Psexec ç¨ćłsampleÂ
ĺˇčĄé 獯éťč ŚçI.E
psexec -u domain\user -p password \192.168.0.45 -d -i -l âC:\Program Files\Internet Explorer\iexploreâ
psexec \\PCname -i -s âC:\Program Files\Internet Explorer\iexploreâ (if you are a login as domain administrator.
Generate checksum in Windows
https://www.nextofwindows.com/5-ways-to-generate-and-verify-md5-sha-checksum-of-any-file-in-windows-10
certutil -hashfile z:\desktop\lsr.exe SHA512
powershell 4.0
Get-FileHash -Path z:\desktop\lsr.exe -Algorithm SHA512
Synology VPN - L2IP/IPSec windows 10 client setup
1 ) Add Registy Key to Windows 10 Client  Refer ĺŚä˝ĺ¨ Windows Vista ĺ Windows Server 2008 ä¸ďźćź NAT-T čŁç˝Žĺžćšč¨ĺŽ L2TP/IPsec äźşćĺ¨
run Regedit in Windows 10 Client and go to below "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent" Â add DWORD 32 Key name is "AssumeUDPEncapsulationContextOnSendRule" and Value is "2" and reboot PC to applied.
2) Create New VPN connection
On Windows 10 client -> start -> setting -> Vpn
create a VPN with correct login credential.
Modify network settingÂ
Because all internet traffic will go to VPN, if you want only some services via VPN then Change default gateway back to local gateway and add statics route destination ip address (optional)
Add statics routeÂ
add statics route persistent command is  "route -p add 192.168.0.0 MASK 255.255.255.0 10.2.0.0" (if ip address is 192.168.0.xxx will route to VPN)
Synology create shared folder (integrated windows AD)
Create a Shared Folder from control panel
click only "Hide sub-folders and files from users without permissions" under General Tab.
convert to Windows ACL
user File Station to grant permission as normal

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Synology NAS disk crashed and repair after replacement.
You will receive notification via email if harddisk crashed found in  Synology NAS, after you logon into Synology NAS panel and found degraded in Storage Manager.
Purchase a new HDD immediately for HDD replacement, if your Synology NAS is supported hotplug (shutdown is not necessary), remove the damaged one and replace a new one, after login Synology panel and then start to repair -> Storage Manager ->Volume -> Manage
Done
Windows 10 Preferred network
Although it seems MS removed the Adapter and Bindings tab you can still change the priority order. Â That tab was just setting a registry key which you can either update manually using regedit or write a script to change it. Â
The registry key is here
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Tcpip\Linkage\Bind
In this key you will see the Id for each of your adapters. They are listed in priority order from top to bottom with the top being the highest priority. In order to figure out which one is which you can run these 2 commands in a command prompt using wmic to query the information for your adapaters.
This will give you the index and name of each adapter. Find the name you are looking for and note the Id.c:\wmic nic get Index,NetConnectionId
Now run this command to get the Index and Id
c:\wmic nicconfig get Index,SettingId
Look at the index for your adapter and you will see the SettingId value which will match what you see in that Bind key. Â If you want an adapter to be the highest priority then rearrange the list in that key.
DDR-WRT one to one NAT
Go to Administration->Commands
startup scrips
# Save Startup WANIF=`get_wanface` ifconfig $WANIF:1 115.xxxx.xxx.11 netmask 255.255.255.248 broadcast 115.xxx.xxx.255 ifconfig $WANIF:2 115.xxx.xxx.12 netmask 255.255.255.248 broadcast 115.160.159.255 ifconfig $WANIF:3 115.xxx.xxx.13 netmask 255.255.255.248 broadcast 115.160.159.255 ifconfig $WANIF:4 115.xxx.xxx.14 netmask 255.255.255.248 broadcast 115.160.159.255
firewall scrips:
# Save Firewall
# WAN .11 -> LAN .65 iptables -t nat -I PREROUTING -d 115.xxx.xxx.11 -j DNAT --to 192.168.1.65 iptables -t nat -I POSTROUTING -s 192.168.1.65 -j SNAT --to 115.xxx.xxx.11 iptables -I FORWARD -d 192.168.1.65 -p tcp --dport 80 -j ACCEPT
iptables -I FORWARD -d 192.168.1.65 -j ACCEPT Â <- forward all port to 192.168.1.65
Test Hyper-V Replica fail over
scenario: Two standalone windows hyper-v replica connection was established and replication was enable between primary host (testhost.tplhk.local) and replica server (testreplica.tplhk.local).
Planned Fail over (Scenario: for example primary host need to shutdown for MA, all VMs in primary host switch to replica server and continue running on replica server until primary host resumed)
steps
stop VM in primary host (testhost.tplhk.local)
right click VM and select Planned Failover with Reserve and start VM in replica server selection (Now VM in testreplica.tplhk.local server with start automatically and replica role will swap each other testhost changed to replica server and testreplica changed to primary server)
When original host resumed(testhost.tplhk.local)
stop VM in replica host (testreplica.tplhk.local)
right click VM and select Planned Failover with Reserve and start VM in replica server selection (Now VM in testhost.tplhk.local server with start automatically and replica role will swap back). ** all change during in testreplica will still here , no data lost ****
UnPlanned Fail over (Scenario: for example primary host unplanned shutdown or damaged that unable to resume in short time. then run VM in replica server.)
steps
right click VM and select failover (on testreplica.tplhk.local , VM will start and running)
once primary host resumed, may be over a month and replica setting were applied.
shutdown VM (on testreplica.tplhk.local)
right click VM and select Planned Failover with Reserve and start VM in replica server selection (on testreplica.tplhk.local) - a inital copy will transfer from testreplica.tplhk.local to testhost.tplhk.local) and VM will start in testhost.tplhk.local.)
*** dont use planned failover without reserve option , replica will have problem when replia , VM will paused wait you to fixed it****
Set up two standalone Hyper-V 2012R2 servers as replication partners (port 443)
Scenario: You have two standalone Windows 2012 r2 with Hyper-V installed, you need to setup replica between each other. for DR propose.
Prerequisite:
FQDN Name both two standalone Windows 2012R2 server.
DNS Server records or add into hosts file in windows\system32\drivers\etc\hosts. add to hosts will be use at this posts
Makecert.exe download and install both two standalone server in https://www.microsoft.com/en-us/download/details.aspx?id=8279
FQDN Name both two standalone Windows 2012R2 server. (you must FQDN name for example testhost.tplhk.local and testreplica.tplhk.local will be used. *** only netbios (testhost) name doenât work ***)
To add FQDN name both two standalone server -> Right click Windows menus -> system -> advanced system settings -> computer name -> change -> more type Primary DNS suffix of this computer âtplhk.localâ in this sample. so FQDN name will be âtesthost.tplhk.localâ in primary host , âtestreplica.tplhk.localâ in replica host. restart both windows server.
Modify hosts files both two standalone windows server. testhost.tplhk.local is primary hyper-v host in this sample testreplia.tplhk.local is replica hyper-v host in this sample
Makecert both primary and replica windows server 2012. (please refer to the below link for more detail)
https://blogs.technet.microsoft.com/virtualization/2013/04/13/hyper-v-replica-certificate-based-authentication-makecert/
=================== On Primary Host testhost.tplhk.local
===================
makecert -pe -n "CN=HostRootCA" -ss root -sr LocalMachine -sky signature -r "HostRootCA.cer"
makecert -pe -n "CN=testhost.tplhk.local" -ss my -sr LocalMachine -sky exchange -eku 1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2 -in "HostRootCA" -is root -ir LocalMachine -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 testhost.cer
*** copy ReplicaRootCa.cer from testreplica.tplhk.local *******
certutil -addstore -f Root âReplicaRootCA.cerâ
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Replication" /v DisableCertRevocationCheck /d 1 /t REG_DWORD /f
=================== On replica Host testreplica.tplhk.local
===================
makecert -pe -n "CN=ReplicaRootCA" -ss root -sr LocalMachine -sky signature -r "ReplicaRootCA.cer"
makecert -pe -n "CN=testreplica.tplhk.local" -ss my -sr LocalMachine -sky exchange -eku 1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2 -in "ReplicaRootCA" -is root -ir LocalMachine -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 testreplica.cer
*** copy HostRootCa.cer from testhost.tplhk.local *******
certutil -addstore -f Root âHostRootCA.cerâ
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Replication" /v DisableCertRevocationCheck /d 1 /t REG_DWORD /f
Export testhost.tplhk.local and import to testreplica.tplhk.local run MMC and snap-in certification as the below
copy testhost.pfx to testreplica.tplhk.local
and double click testhost.pfx to import cert in testreplica.tplhk.local server.
Export testreplica.tplhk.local and import to testhost.tplhk.local run MMC and snap-in certification same as above.
copy testreplica.pfx to testhost.tplhk.local
and double click testreplica.pfx to import cert. in testhost.tplhk.local server.
*** finished connection between two standalone windows hyper-v server, you should establish connection between each other to perform Hyper-v replica ***

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Restore Windows 2012 domain controller VM error 0xc00002e2 from Windows Server Backup
âYour PC ran into a problem and needs to restart. Weâre Just collecting some error infro, and then you can restart. (100% complete)â
You may got the above error message, when start a Windows 2012 AD guest VM which restored successfully from Windows server backup.
Scene:
restore a windows Hyper-V backup (backup from windows built-on application Windows Server Backup over 3 months for example backup date Jan 1 2016 ) to a new machine.
successfully restore via Windows server backup (restored date is April 1 2016)
change Hyper-V config. setting in Hyper-V manager
start VM (Windows 2012 AD )
got error.
Solution:
change Windows Hyper-V Host machine date go back to Jan 3, 2016, close backup date as possible.
perform windows server backup again to restore the backup as normal.
change Hyper-V config. setting in Hyper-V manager.
start VM (windows 2012 AD) , you should start without any error
login to VM.
change guest system date to the real time (for example April 1, 2016).
reboot VM.
chnage Hyper-V host machine to the real time (for example April 1, 2016).
done!
Sage 300 ERP UI Container has stopped working âwhen printing reports to previewâ
Description
You may got error âSage 300 ERP UI Container .....â when printing any report in Sage Accpac. It is because failure during installation or unable to register crystal report dll. what you need to do is 1) download and reinstall .net 4.0 or the crystal reports runtime engine manually and than register the dll again.
Error Description from Support.na.sage.com
https://support.na.sage.com/selfservice/viewContent.do;jsessionid=3B2552B383510F117348A1F2FF66237A.worker1d?externalId=18397&sliceId=1
Crystal Report run-time download
https://support.jeff-net.com/index.php?/Knowledgebase/Article/View/57/0/installingreinstalling-crystal-reports-runtime-engine-manually
PLUS IN GMAIL AND DOT IN GMAIL
https://gmail.googleblog.com/2008/03/2-hidden-ways-to-get-more-from-your.html?m=1 Dot Sometimes you may receive a message sent to an address that looks like yours but has a different number or arrangement of periods. While we know it might be unnerving if you think someone else's mail is being routed to your account, don't worry: both of these addresses are yours. Gmail doesn't recognize dots as characters within usernames, you can add or remove the dots from a Gmail address without changing the actual destination address; they'll all go to your inbox, and only yours. In short: [email protected] = [email protected]@gmail.com = [email protected]@gmail.com = [email protected] All these addresses belong to the same person. You can see this if you try to sign in with your username, but adding or removing a dot from it. You'll still go to your account. If you get mail that seems to be intended for someone else, it's likely that the sender entered the wrong address, just like if you've ever dialed a wrong phone number for someone. In these cases, we suggest contacting the original sender or website when possible to alert them to the mistake. One last thing: Google Apps does recognize dots. If you'd like to have a dot in your username, please ask your domain administrator to add your preferred username as a nickname. Plus Using an address alias Gmail doesn't offer traditional aliases, but you can receive messages sent to [email protected]. For example, messages sent to [email protected] are delivered to [email protected]. You can set up filters to automatically direct these messages to Trash, apply a label or star, skip the inbox, or forward to another email account.
I've a VirtualBox VM which configured a very large hard disk size (bigger than host). By my mistake, a program on the VM generated lots of log files and the VDI file size keeps growing until there ...
You have to do the following steps:
Run defrag in the guest (Windows only)
With a Linux Guest run this:
sudo dd if=/dev/zero of=/bigemptyfile bs=4096k sudo rm -rf /bigemptyfile
Or:
telinit 1 mount -o remount,ro /dev/sda1 zerofree -v /dev/sda1
With a Windows Guest, download SDelete from Sysinternals and run this:
sdelete âz
Shutdown the guest VM
Now run VBoxManage's modifyhd command with the --compact option:
With a Linux Host run this:
vboxmanage modifyhd /path/to/thedisk.vdi --compact
With a Windows Host run this:
VBoxManage.exe modifyhd c:\path\to\thedisk.vdi --compact
With a Mac Host run this:
VBoxManage modifyhd /path/to/thedisk.vdi --compact
This reduces the vdi size.
A technology blog with a special focus on real-time web technologies, web video and the Flash Platform.: IIS 7: Allow One IP Address, Block All Others
#iis, restrict IP address to access web page

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Image2icon provides the fastest way to customize your icons, easily and free.
Create Icon for Macintosh
start virtualbox in command mode and convert to app in MacOS
start virtualbox in terminal command is VBoxManage startvm VMName.
Create a shortcut in MacOS
run AppleScript Editor
type the below command (WindowsXPSP3Testing is Virutal Machine Name)
do shell script "/Applications/VirtualBox.app/Contents/MacOS/VBoxManage startvm WindowsXPSP3Testing"
File -> Export.. to Application. and change file format to Application
Done! ShortCut created, you can move it to Desktop for use