booandjoel.me.uk Report : Visit Site


  • Server:nginx...

    The main IP address: 94.136.40.82,Your server United Kingdom,Derby ISP:Webfusion Internet Solutions  TLD:uk CountryCode:GB

    The description :vmware, microsoft windows, microsoft sql and powershell...

    This report updates in 05-Jul-2018

Created Date:2006-03-24
Changed Date:2018-03-17

Technical data of the booandjoel.me.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host booandjoel.me.uk. Currently, hosted in United Kingdom and its service provider is Webfusion Internet Solutions .

Latitude: 52.922771453857
Longitude: -1.4766299724579
Country: United Kingdom (GB)
City: Derby
Region: England
ISP: Webfusion Internet Solutions

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx containing the details of what the browser wants and will accept back from the web server.

X-nananana:Batcache
Transfer-Encoding:chunked
Strict-Transport-Security:max-age=86400
Vary:Accept-Encoding, Cookie
X-ac:3.ewr _dca
Server:nginx
Last-Modified:Thu, 05 Jul 2018 03:45:06 GMT
Connection:keep-alive
Link:; rel=shortlink
Cache-Control:max-age=300, must-revalidate
Date:Thu, 05 Jul 2018 03:45:07 GMT
X-hacker:If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.
Content-Type:text/html; charset=UTF-8
Content-Encoding:gzip

DNS

soa:ns.hosteurope.com. hostmaster.booandjoel.me.uk. 2010110908 86400 3600 1209600 14400
txt:"v=spf1 include:spf.protection.outlook.com -all"
ns:ns2.hosteurope.com.
ns.hosteurope.com.
ipv4:IP:94.136.40.82
ASN:20773
OWNER:HOSTEUROPE-AS, DE
Country:GB
mx:MX preference = 11, mail exchanger = booandjoel-me-uk.mail.protection.outlook.com.

HtmlToText

notes from stuff i'm working on vmware, microsoft windows, microsoft sql and powershell useful commands june 15, 2016 exporting e-mail to outlook data files programmatically introduction this post discusses a simple script to export one or more exchange online mailboxes to an outlook data file programmatically. why am i doing this? i wrote the script to export the mailbox data from an office 365 tenant for an office 365 tenant-to-tenant migration. now i know there are tools out there that do this but money constraints meant i had to come up with something else. how does it work? first of all your outlook profile must contain all the mailboxes you want to export i.e. you have been granted ‘full access’ over the mailboxes and they must be in online mode not cached, the reason being if they’re cached the copy process might not contain all the mailbox data. mailboxes which are cached are reported in the logs as per the image below. so, the script, well the script uses the outlook object model to connect to outlook and enumerate the mapi stores. each store is assigned an associated outlook data file, which is attached and named pst: ‘mailbox store name’, next the script enumerates the mailbox store folder structure and copies the data from each folder to the outlook data file store, once complete it disconnects the outlook data file store and moves onto the next mailbox store in the profile. the outlook data file exports are stored in a directory named exports within the directory where the script is run from and the log file is stored in the script root directory. conclusion the script has scope for lots of improvements such as better error checking, retries if the copy process fails on a particular folder and maybe even consuming user credentials to have mailboxes from both tenants, then run the copy process. the script can be downloaded from github here: https://github.com/heathen1878/exportmailboxtopst references https://social.technet.microsoft.com/forums/scriptcenter/en-us/c76c7167-8336-4261-ac40-2fb44ff3b3f3/powershell-and-outlook-removestore-method?forum=itcg – used to name the outlook data file store in order to disconnect it reliably. http://www.bytemedev.com/powershell-disable-cached-mode-in-outlook-20102013/ – used for the disabling of the outlook cache mode. advertisements written by heathen1878 leave a comment posted in office 365 , outlook , powershell tagged with exchange online , outlook object model , powershell march 17, 2016 spinning up and spinning down azure vms introduction this post discusses a relatively simple piece of code used to start or stop one or more azure virtual machines within a defined time window. why am i doing this? so, i have come up with this code to solve an issue with one of our customers wanting to de-allocate their vms during non-business hours using powershell; the alternative would be to login to the azure portal and selecting start… …or shutdown everyday; not going to happen. how does it work? so this post references an earlier article i wrote around authenticating against azure when scripting – see here . the script reads in data from a csv file called azureiaasvms.csv; the script looks for this file within the directory the script is being run from. once the data has been imported it works out what day it is and then checks whether that particular azure vm should be running or shutdown and does the necessary. i have this script scheduled to run every hour using task scheduler. the command for example would be c:\…\powershell.exe -file c:\…\deallocateazurevms.ps1 conclusion so the this script is relatively simple at the minute but does a job. the script could be extended to… …report failures using email notification …include multiple subscriptions …be more granular regarding start or stop time and improved time logic the current version of the script can be downloaded from github here – https://github.com/heathen1878/azurevmcontrol written by heathen1878 leave a comment posted in azure , powershell tagged with automation , azure , powershell july 31, 2014 copying vhds between windows azure storage accounts script overview thought i’d write an interactive script which allows you to specify the source and destination storage account name, container and blob. requires you’re already connected to windows azure – see this article for more info – should really integrate connecting to azure as part of this script. functions the functions are there basically to check whether the storage accounts, containers and blobs exist. script body the main body of the script uses a valid variable to determine whether it can move to the next step. example of script output: the script is available here . written by heathen1878 leave a comment posted in powershell tagged with azure , powershell july 30, 2014 connecting to windows azure with powershell installing the powershell module first of all you need the windows azure powershell module which can be downloaded from here . the module is installed via the microsoft web pi, simply follow the installer. if powershell is open when you install the windows azure module simply restart powershell i.e. close it and reopen. next check the module is available using get-module -listavailable this will be listed at the bottom if azure is available. import the module using import-module azure get-command -module azure will give you a list of the available commands. connecting to azure [updated 16/03/2016]: if you’re looking to use an interactive powershell session with azure then the add-azureaccount cmdlet is suitable; this will give you a 12 hour session token; after this time you need to re-authenticate. enter your email address associated with the azure subscription and follow the prompts. once you have authenticated return to powershell and type get-azuresubscription to see your subscriptions. if you have multiple subscription then you’ll need to determine which one if default and which is current. get-azuresubscription -default returns the default subscription. get-azuresubscription -current returns the currently selected subscription. if you have multiple subscriptions with the same name then the -extendeddetails parameter is useful to determine what is what. now comes the question…how do i authenticate against azure when scripting? well you need to use the publishsettingsfile but if you’ve already added the subscription using the add-azureaccount cmdlet you’ll need to remove it first. use the remove-azureaccount and then use the get-azurepublishsettingsfile to get the certificate for the subscription to enable non-interactive authentication. [updated 16/03/2016] using publishsettingsfile first of all run get-azurepublishsettingsfile this will open an internet browser and you’ll be prompted to enter your credentials associated with your azure subscription, once authenticated a publishsettings file will be downloaded. next import the publish settings file using import-azurepublishsettingsfile -publishsettingsfile filename… when you run get-azuresubscription you’ll notice your subscription will contain a certificate, you should now delete the downloaded .publishsettings file. run some commands against your subscription…get-azurevm…get-azurestorageaccount… written by heathen1878 1 comment posted in powershell tagged with azure , powershell july 20, 2014 kerberos double-hop with hyper-v and file shares this article describes how to troubleshoot and fix the errors received when trying to attach an isos to a hyper-v virtual machine from a client computer running the hyper-v management tool or a system center virtual machine manager. the scenario would look similar to diagram below. if you try and mount an iso hosted on \\fileserver\isos\ to a virtual machine running on the hyper-v server from management tools hosted on another server with default configuration you will see an error similar to the one below. at first you may want to check permissions on the file share hosted on \\fileser

URL analysis for booandjoel.me.uk


https://infratechy.co.uk/tag/lacp/
https://infratechy.co.uk/2014/03/30/windows-server-2012-configure-local-storage/#respond
https://infratechy.co.uk/tag/autodiscover/
https://infratechy.co.uk/tag/ssl/
https://infratechy.co.uk/2014/07/31/copying-vhds-between-windows-azure-storage-accounts/
https://infratechy.co.uk/tag/ftp6/
https://infratechy.co.uk/tag/volume-shadow-copy/
https://infratechy.co.uk/tag/802-1ax/
https://infratechy.co.uk/tag/nic-teaming/
https://infratechy.co.uk/tag/sql-server/
https://infratechy.co.uk/tag/automation/
https://infratechy.co.uk/2014/07/31/copying-vhds-between-windows-azure-storage-accounts/#respond
https://infratechy.co.uk/tag/iis-7-0/
https://infratechy.co.uk/2014/07/20/kerberos-double-hop-with-hyper-v-and-file-shares/#comments
https://infratechy.co.uk/tag/vcp/
booandjoel.me.uk
booandjoel.co.uk

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;


Domain name:
booandjoel.me.uk

Registrant:
Dominic Clayton

Registrant type:
UK Individual

Registrant's address:
71 Rhyddings Street
Oswaldtwistle
Accrington
Lancashire
BB5 3EY
United Kingdom

Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 29-Apr-2014

Registrar:
123-Reg Limited t/a 123-reg [Tag = 123-REG]
URL: http://www.123-reg.co.uk

Relevant dates:
Registered on: 24-Mar-2006
Expiry date: 24-Mar-2019
Last updated: 17-Mar-2018

Registration status:
Registered until expiry date.

Name servers:
ns.123-reg.co.uk 212.67.202.2
ns2.123-reg.co.uk 62.138.132.21

WHOIS lookup made at 14:32:26 30-Mar-2018

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2018.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER uk.whois-servers.net

  ARGS booandjoel.me.uk

  PORT 43

  TYPE domain

OWNER

  ORGANIZATION Dominic Clayton

TYPE
UK Individual

ADDRESS
71 Rhyddings Street
Oswaldtwistle
Accrington
Lancashire
BB5 3EY
United Kingdom
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 29-Apr-2014

DOMAIN

  SPONSOR 123-Reg Limited t/a 123-reg [Tag = 123-REG]

  CREATED 2006-03-24

  CHANGED 2018-03-17

STATUS
Registered until expiry date.

NSERVER

  NS.123-REG.CO.UK 212.67.202.2

  NS2.123-REG.CO.UK 62.138.132.21

  NAME booandjoel.me.uk

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2018.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.ubooandjoel.com
  • www.7booandjoel.com
  • www.hbooandjoel.com
  • www.kbooandjoel.com
  • www.jbooandjoel.com
  • www.ibooandjoel.com
  • www.8booandjoel.com
  • www.ybooandjoel.com
  • www.booandjoelebc.com
  • www.booandjoelebc.com
  • www.booandjoel3bc.com
  • www.booandjoelwbc.com
  • www.booandjoelsbc.com
  • www.booandjoel#bc.com
  • www.booandjoeldbc.com
  • www.booandjoelfbc.com
  • www.booandjoel&bc.com
  • www.booandjoelrbc.com
  • www.urlw4ebc.com
  • www.booandjoel4bc.com
  • www.booandjoelc.com
  • www.booandjoelbc.com
  • www.booandjoelvc.com
  • www.booandjoelvbc.com
  • www.booandjoelvc.com
  • www.booandjoel c.com
  • www.booandjoel bc.com
  • www.booandjoel c.com
  • www.booandjoelgc.com
  • www.booandjoelgbc.com
  • www.booandjoelgc.com
  • www.booandjoeljc.com
  • www.booandjoeljbc.com
  • www.booandjoeljc.com
  • www.booandjoelnc.com
  • www.booandjoelnbc.com
  • www.booandjoelnc.com
  • www.booandjoelhc.com
  • www.booandjoelhbc.com
  • www.booandjoelhc.com
  • www.booandjoel.com
  • www.booandjoelc.com
  • www.booandjoelx.com
  • www.booandjoelxc.com
  • www.booandjoelx.com
  • www.booandjoelf.com
  • www.booandjoelfc.com
  • www.booandjoelf.com
  • www.booandjoelv.com
  • www.booandjoelvc.com
  • www.booandjoelv.com
  • www.booandjoeld.com
  • www.booandjoeldc.com
  • www.booandjoeld.com
  • www.booandjoelcb.com
  • www.booandjoelcom
  • www.booandjoel..com
  • www.booandjoel/com
  • www.booandjoel/.com
  • www.booandjoel./com
  • www.booandjoelncom
  • www.booandjoeln.com
  • www.booandjoel.ncom
  • www.booandjoel;com
  • www.booandjoel;.com
  • www.booandjoel.;com
  • www.booandjoellcom
  • www.booandjoell.com
  • www.booandjoel.lcom
  • www.booandjoel com
  • www.booandjoel .com
  • www.booandjoel. com
  • www.booandjoel,com
  • www.booandjoel,.com
  • www.booandjoel.,com
  • www.booandjoelmcom
  • www.booandjoelm.com
  • www.booandjoel.mcom
  • www.booandjoel.ccom
  • www.booandjoel.om
  • www.booandjoel.ccom
  • www.booandjoel.xom
  • www.booandjoel.xcom
  • www.booandjoel.cxom
  • www.booandjoel.fom
  • www.booandjoel.fcom
  • www.booandjoel.cfom
  • www.booandjoel.vom
  • www.booandjoel.vcom
  • www.booandjoel.cvom
  • www.booandjoel.dom
  • www.booandjoel.dcom
  • www.booandjoel.cdom
  • www.booandjoelc.om
  • www.booandjoel.cm
  • www.booandjoel.coom
  • www.booandjoel.cpm
  • www.booandjoel.cpom
  • www.booandjoel.copm
  • www.booandjoel.cim
  • www.booandjoel.ciom
  • www.booandjoel.coim
  • www.booandjoel.ckm
  • www.booandjoel.ckom
  • www.booandjoel.cokm
  • www.booandjoel.clm
  • www.booandjoel.clom
  • www.booandjoel.colm
  • www.booandjoel.c0m
  • www.booandjoel.c0om
  • www.booandjoel.co0m
  • www.booandjoel.c:m
  • www.booandjoel.c:om
  • www.booandjoel.co:m
  • www.booandjoel.c9m
  • www.booandjoel.c9om
  • www.booandjoel.co9m
  • www.booandjoel.ocm
  • www.booandjoel.co
  • booandjoel.me.ukm
  • www.booandjoel.con
  • www.booandjoel.conm
  • booandjoel.me.ukn
  • www.booandjoel.col
  • www.booandjoel.colm
  • booandjoel.me.ukl
  • www.booandjoel.co
  • www.booandjoel.co m
  • booandjoel.me.uk
  • www.booandjoel.cok
  • www.booandjoel.cokm
  • booandjoel.me.ukk
  • www.booandjoel.co,
  • www.booandjoel.co,m
  • booandjoel.me.uk,
  • www.booandjoel.coj
  • www.booandjoel.cojm
  • booandjoel.me.ukj
  • www.booandjoel.cmo
Show All Mistakes Hide All Mistakes