News, guidelines and various community projects
Recently active
How many times has DNS been the problem? Well, Veeam Explorer for Active Directory’s Compare with Production capability may be a way to help you see if there have been changes in DNS. This is so easy to use, check out this video explaining how this works:You can also watch my Veeam Live session on Application recovery as well (have to register there however)
If you are not sure how much space you might need, then an excellent “unofficial” tool tool created by @Timothy Dewin is available at http://rps.dewin.me/ - The Restore Point Simulator.The tool can help you size for:Backup jobs Backup copy jobs Replication jobsWhile the tool appears straight forward, I have noticed on several occasions people misunderstood which data to input: Common mistakes include sizing a backup copy job and then inputting the size of the source VBK file as the used size GB. This would mean you are doubling up data reductions which will of course not happen. A very cool feature is the easy Export check box that will give you a URL to come back and review the estimate and how did you reach it:
In this week's episode of #HomelabWednesdays, I show you how to easily configure the automatic startup of virtual machines in your home lab. This is very convenient if you don’t want to keep your physical host powered on 24/7 :-)Don’t forget to subscribe to get automatic notifications whenever a new video is released.
The #2MinTues series is aimed at showing something short and sharp in a video format to help the wider community.This will range across all Veeam products. If you would like to see something specific please leave a comment down below.This video will demonstrate how you can make sure that your backup tasks never affect your production workloads!
The Veeam Ready database provides a list of all partner solutions that have successfully passed Veeam’s testing criteria. Solutions are grouped by company name, Veeam Ready classification, and more. So, you can select by Alliance Partner - Model Family - Category Example: I chose by category I think it is something very useful when it comes to having any questions about compatibility and Veeam Product Release Support . https://www.veeam.com/ready.html?x-clickref=1011lbSfagY2
In another Topic, I wrote about designing a Proxy In This Topic will see about the repository design.We need to consider The key recommendation is to follow the 3-2-1 rule. Calculate 1 core and 4GB RAM per repository task slot. The recommended minimum for a repository is 2 cores and 8GB RAM.Sizing The recommended amount of CPU for a repository is 1 core per concurrent configured task slot on a repository server. Configure at minimum a 2 core and 8GB RAM repository server to allow the operating system to be more responsive. When sizing task slots on a repository you have to understand when and how many task slots are consumed. Any write process will consume a task slot. So backing up 10 VMs in one job using per-job backup chains will only write one file (VBK/VIB) in the end - so it consumes one task slot. Running the same backup job with per-VM backup files will create one file per VM and thus can leverage up to 10 tasks slots (when available). Backup Copy Jobs, Agent Backups and
Did you know you’re 30 minutes away from Orchestrated DR at any given moment?Veeam Availability Orchestrator takes just 20 minutes to configure, and it takes less than 10 minutes to create an Orchestration Plan, what we call your your fully documented and automated DR plan.Don’t believe me? I have proof! Those videos cover everything you need to get started after you have installed VAO, and run through the initial configuration wizard, which couldn’t be simpler.Here’s a few more tips I’ve discovered along the way and am sharing:Install the VAO agent on all of your Veeam Backup & Replication servers. Once you install the agent, VAO understands the jobs you already have configured, and can orchestrate their recovery. Simple! If you use NetApp storage, be sure to have your SnapMirrors configured ahead of time if they aren’t already. Once you add your storage systems, you guessed it, VAO understands the relationships you have and can orchestrate their recovery! vSphere Tags make t
You may be aware of the Veeam ONE Restore Operator Activity Report, this one is my favorite. I recommend everyone set up this report for regular automatic generation, which is explained here: https://helpcenter.veeam.com/docs/one/reporter/schedule_reports.html?ver=100 See the video below on how to do it!
Hi Veeam Community!Here are a few housekeeping rules to keep this space friendly, interactive and useful:All content is in English only Personal information, which is not suitable for public viewing, cannot be published – e.g. address or phone number Podcasts and YouTube streams should be embedded through the ‘Embed media’ functionality. Here’s an example. Don’t just post a sentence with a hyperlink. Such posts will be hidden. We ask that you don’t just post a link to a blog or article, since most community members prefer to stay here and have discussions. Users may not post any offensive materials, share illegal or copyrighted content, attempt to distribute illegal substances, or distribute viruses or other material. Users may not use this place for (commercial) activities such as the advertising or sale of products or services, the offering of (interactive) games or the advertising of other communities or websites. The Veeam Community Team reserves the right to remove content or rest
I recently started a YouTube video series on how to build your own home lab. New videos are posted each Wednesday so don’t forget to subscribe to get notifications when a new video goes live.
#region: Add Veeam PSSnapin and ConnectAdd-PSSnapin VeeamPSSnapin$VeeamCred = Get-Credential -Message "Veeam Credential"Connect-VBRServer -Server "192.168.3.100" -Credential $VeeamCredFind-VBRViEntity#endregion#region: VMware Module and vCenter ConnectionGet-Module -ListAvailable -Name VMware* | Import-ModuleSet-PowerCLIConfiguration -DefaultVIServerMode Single -InvalidCertificateAction Ignore -Scope Session -Confirm:$false$vCenterCred = Get-Credential -Message "vCenter Credential"Connect-VIServer -Server "192.168.3.101" -Credential $vCenterCred#endregion#region: List Objects in Backup Jobs$VBRJobs = (Get-VBRJob).where({$_.JobType -eq "Backup" -and $_.Name -like "*Location*"})## List Backup Jobs that match the filter$VBRJobs | Select Name, JobType, SourceType | ft$VBRJobToLocationA = Get-VBRJob -Name "Backup to LocationA"## list Objects in Job$VBRJobToLocationA.GetObjectsInJob().GetObject() | Select ViType, Name, ObjectId | ft#endregion#region: Get Veeam Tag Details## Veeam Inventory(F
#Requires -Version 7#Requires -Modules PSSendGrid<#.Synopsis Generates report of relevant data on all customers known to a given Veeam Service Provider Console Server. Uses the new v3 API so your milage may vary..Notes Version: 0.6 Author: Jim Jones Modified Date: 8/21/2020 If running for the first time a new computer You will need to run to store the credentials $credpath='c:\creds\myadmincred.xml' GET-CREDENTIAL –Credential (Get-Credential) | EXPORT-CLIXML $credpath.EXAMPLE .\vspcCompanyReport.ps1 -vacServer 'vac.mydomain.com' -authPath 'c:\creds\myadmincred.xml'#>[CmdletBinding()]Param ( [string]$vacServer = "vac.mydomain.com", [string]$authPath = 'c:\creds\myadmincred.xml')#Email Variables$date = Get-Date$sgToken = "SendGridToken"$fromAddress = "myvac@mydomain.com"$fromName = "US VAC"$toName = "NetOps"$toAddress = "me@me.com"$emailBody = "See attached Company Backup Resource Report for $date"$Credentials = IMPORT-CLIXML
When creating or changing SureBackup settings using the Veeam PowerShell Snapin, not all options were provided by the Snapin. For example startup timeout could not be set by PowerShell. Fortunately this is now possible with v10-Snapin. See the picture for details: New Option in v10 Snapin
Veeam ONE is a complete monitoring system for VMware, Hyper-V, Veeam and even at the application level being able to monitor VM services and processes running Microsoft Windows, without the need to install any agent, and all through API.As @Rick Vanover usually says, Veeam ONE will surely tell us more than one thing about our environment that we don't know, and Rick is right, with several hundred metrics that Veeam ONE collects, added to the several dozen reports that are included by default, Veeam ONE is that co-worker that we all would like to have in our IT team.Veeam ONE allows you to create notifications for each predetermined alarm or alarms that we create ourselves. While it is true that email notifications are the most basic and the ones we probably configure by default, sadly, it is true that email has become a tool overloaded with daily content, and most likely if a critical alarm falls in a folder or inbox along with 150 other emails, it will not pay the attention it require
I have started a new series on my personal YouTube channel. The #2MinTues series is aimed at showing something short and sharp in a video format to help the wider community. This will range across all Veeam products.
Veeam is not responsible nor can be held accountable for the accuracy and usability for code samples published in the Script Library.Scripts are licensed to you by the sample's author and fall under your responsibility.
VeeamLIVE - Please let us know what questions you want to ask?
Who are Veeam Legends?Veeam Legends are Veeam users and data protection industry experts who are passionate about technology, innovation and eager to further develop their career, while sharing their experiences with the community. As avid Veeam users, they participate in various community projects, drive local Veeam User Groups and can also influence development of Veeam products and solutions — they have real impact within the community! Apart from that, Veeam Legends are always eager to help their peers and get connected with other community members. How do I become a Veeam Legend?Join the Veeam Community Resource Hub and participate in Veeam community projects: whether you have lots of product ideas or if you are a fruitful content creator, our rewards system counts it all! You will receive points and badges for different activities within the Veeam Community Resource Hub, so watch your profile. As we have two intakes throughout the year, Veeam Legends will be announced twice per y
The VUG (Veeam User Group) is a community of Veeam users. It is a great way to connect, share experiences, learn from your peers and expand your network.The resources available to you range from face to face, virtual user group meetings to online groups, discussion boards, blogs, podcasts and livestream broadcasts.Make sure you are taking advantage of all these offerings! FAQWhat topics are being addressed at VUG meetings? The VUG meeting’s agenda is loose and you are welcome to contribute. Who can take part? Veeam users who want to get the most from their solution or those who want to start using Veeam products, but don’t know where to start. May I bring a fellow attendee to a VUG meeting and online group? Absolutely! You are welcome to share the registration page or invitation to the group with those who are interested. How to attend VUG meetings? Check out our events calendar here. You can also join the online Veeam User Group to become a member and stay updated on upcoming VUG mee
Veeam University is a FREE training program built specifically for end users.Whether you’re new to Veeam or a veteran, get access anywhere, anytime, on any device to the knowledge and expertise you need to be the very best in the industry. Everything is available in bite-sized video content, accessible on-demand and a-la-carte so you can pick what you want to learn, when you want to learn it.Currently, we have courses dedicated to a wide range of topics.Want to learn how to start with Veeam Backup & Replication? Get more insights on its installation and deployment? Learn how to manage VM Backup Jobs? Or maybe you’re curious about integrations and monitoring capabilities?Well, you’re in right place. Start your Veeam University training today!Veeam University is designed for you, so your feedback is incredibly important to ensure we are providing the right knowledge in the right way.Please, share your feedback with us as well as suggest topics to build courses on in this Veeam Univer
We’re introducing discussion boards, where you can ask questions, as well as and have discussions around Veeam community projects, Veeam events, industry and technology news.Whether you would like to share your feedback or have an idea or suggestion for improvement, we would like to hear from you.Let us know if you would like to have more discussion boards and what topics you’re interested in!
We are excited to welcome you at our new community home where you can share your professional experience, grow your network and gain industry recognition via an enhanced reward system.The the Veeam Community Resource Hub provides users, partners and industry influencers with access to various community projects:Share experiences and learn from your peers and expand your network while participating in virtual Veeam User Groups Bring your knowledge and expertise and contribute to the community while creating blogs and podcasts in the Community Resources space Have the opportunity to grow as a Veeam pro, broaden your skill set and prove your abilities as an industry expert by completing free, on-demand training through Veeam University Gain industry recognition by becoming a Veeam Legend. It’s a NEW community program that we just introduced Have fun and get rewarded. We want to acknowledge every contributor to the community! Check out the leaderboard widget with the most proactive members
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.