A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
You need at least 2013 to use vba on guides
Even then you cannot move them but you can add a new guide a set distance from each original and the delete the original
Here is the basic code for you to play with
Sub guides()
' moves presentation guides 1.5 cm right and down
Dim vpos As Variant
Dim gd As Guide
Dim gd2 As Guide
Dim L As Long
For L = ActivePresentation.guides.Count To 1 Step -1
Set gd = ActivePresentation.guides(L)
vpos = gd.Position
If gd.Orientation = ppHorizontalGuide Then
Set gd2 = ActivePresentation.guides.Add(ppHorizontalGuide, vpos + cm2Points(1.5))
gd.Delete
Else
Set gd2 = ActivePresentation.guides.Add(ppVerticalGuide, vpos + cm2Points(1.5))
gd.Delete
End If
Next L
End Sub
Function cm2Points(inval As Single) As Single
cm2Points = inval * 28.346
End Function