public boolean matches(ConditionContext conditionContext,AnnotatedTypeMetadata annotatedTypeMetadata) {
Sring os = conditionContext.getEnvironment().getProperty("os.name");
if(os.contains("Windows")) {
return true;
}
return false;
}