Posts

Advanced Switching Troubleshooting and Solutions v25.11 (ASTSv2)

Image
  Welcome to this week's class navigate to   https://rubbernecks-arubanetworks.blogspot.com Be sure you have downloaded the course learner guide as per the instructions you received in an email from HPE last week.  Check your email history, spam folder, etc... for the keyword "OnSecure" if you cannot find the email.  You only have 10 days to print this learner guide (PDF or paper), and one year of access to the online document. Click   here for this week's lab access spreadsheet ask me for the link password Lab Notes webgate: how to copy and paste while doing the labs ask me for the link password if you received a lab access voucher with your course: Directions to reserve the lab:   Please visit  https://hpelabsonline.com  to reserve the lab.   Enter your voucher # and hit submit. Follow the prompts to add your Basic Info and select your time zone. Select the date and time you would like your lab access to begin. Click “complete reservation w...

Arubanetworks Webgate - Copy and Paste instructions

Copy/Paste Text from local to remote  Copy/Paste from local to remote  You need to copy the text between local and remote devices as follows: Copy the text from your local machine as usual Press Ctrl+Alt+Shift to get the menu (don't do this on the network diagram, only on telnet / RDP sessions) Paste the text in the box that shows on the menu (this copies the text to the remote server) Press Ctrl+Alt+Shift to close the menu (or do this after the next step) Right click on the device to paste in telnet or paste normally in the remote RDP session Copy/Paste from remote to local To copy to your local machine from the remote switch reverse this: Select the text like you would with Putty Press Ctrl+Alt+Shift to get the menu (don't do this on the network diagram, only on telnet / RDP sessions) Copy text from box on menu Press Ctrl+Alt+Shift to close the menu (or do this after the next step) Paste as usual on your local PC Copy/Paste an Archive of Files from remote to local Make a zip...

Instructor PPTX VBA - Removing out of slide boundary Color Selector Shape

Image
How to manipulate shapes out of borders of your PPTX Slides If your like me, you find the out of bounds unnecessary shapes in your PPTX distracting when working with pptx files. here is a script that will: detect how many slide masters you have in a pptx then loop through each layout in each slide master it then detects all shapes, determines if they are groups if the group is out of bounds and is the exact size of the color selector group: it shows you the group for final validation and asks you if you want to delete it Option Explicit Sub ColorGroupCheck()     Dim shp As Shape     Dim sld As Slide     Dim oMaster As Design     Dim oLayout As CustomLayout     Dim sldHeight As Long     Dim userResponse As Integer     'Debug.Print ActivePresentation.PageSetup.SlideHeight     'Debug.Print ActivePresentation.Designs.Count     sldHeight = ActivePresentation.SlideMaster.Height       ...